aboutsummaryrefslogtreecommitdiff
path: root/lux-mode
diff options
context:
space:
mode:
authorEduardo Julian2022-07-10 18:00:23 -0400
committerEduardo Julian2022-07-10 18:00:23 -0400
commit1bbc4251230cee13d46df7b706859e834778aee0 (patch)
tree6e9aa1b7e079ffd01041c510ac201f16a57842e9 /lux-mode
parent7db42ab1b9d3c764772ca63c74bf44bb2b8b8325 (diff)
Removed the need for ,! unquoting.
Diffstat (limited to 'lux-mode')
-rw-r--r--lux-mode/lux-mode.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el
index 90ced20ed..1d6637087 100644
--- a/lux-mode/lux-mode.el
+++ b/lux-mode/lux-mode.el
@@ -384,9 +384,10 @@ Called by `imenu--generic-function'."
(data//implicit (altRE "implicitly" "a/an" "a" "an"))
(data//collection (altRE "list" "sequence" "tree"))
;; Code
- (code//quotation (altRE "`" "`'" "'" "," ",\\*" ",!" ",'"))
+ (code//quotation (altRE "`" "`'" "'" "," ",\\*" ",'"))
(code//super-quotation (altRE "``" ",,"))
(code//template (altRE "with_template" "template"))
+ (code//macro (altRE "macro" "syntax"))
;; Miscellaneous
(jvm-host (altRE "import" "export" "class" "interface" "object" "synchronized" "class_for"))
(alternative-format (altRE "char" "bin" "oct" "hex"))
@@ -415,7 +416,8 @@ Called by `imenu--generic-function'."
data//collection))
(code (altRE code//quotation
code//super-quotation
- code//template)))
+ code//template
+ code//macro)))
(concat
"("
(altRE