From 81f03b705940b80ae72c192dc46ffefb8360574e Mon Sep 17 00:00:00 2001 From: Dustin Farris Date: Tue, 9 Aug 2022 12:49:54 -0700 Subject: [PATCH] feat: support heex sigil --- elixir-mode.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elixir-mode.el b/elixir-mode.el index 8efa991c..f3625c13 100644 --- a/elixir-mode.el +++ b/elixir-mode.el @@ -187,7 +187,7 @@ (or "_" "__MODULE__" "__DIR__" "__ENV__" "__CALLER__" "__block__" "__aliases__") symbol-end)) - (sigils . ,(rx "~" (or "B" "C" "D" "E" "L" "N" "R" "S" "T" "U" "b" "c" "e" "r" "s" "w"))))) + (sigils . ,(rx "~" (or "B" "C" "D" "E" "H" "L" "N" "R" "S" "T" "U" "b" "c" "e" "r" "s" "w"))))) (defmacro elixir-rx (&rest sexps) (let ((rx-constituents (append elixir-rx-constituents rx-constituents)))