diff options
author | Eduardo Julian | 2022-06-12 00:38:20 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-06-12 00:38:20 -0400 |
commit | b48ea68a83d01903554c7696c77eedaaf1035680 (patch) | |
tree | c342d8094c3158de16526f874ca9624418cd2dd2 /lux-mode | |
parent | 7abf2d0ac55c229a8793bbff31f132596ffcb275 (diff) |
De-sigil-ification: suffix : [Part 3]
Diffstat (limited to 'lux-mode')
-rw-r--r-- | lux-mode/lux-mode.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el index ddaa4b6e2..46ff12893 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -387,7 +387,7 @@ Called by `imenu--generic-function'." ;; Code (code//quotation (altRE "`" "`'" "'" "~" "~\\+" "~!" "~'")) (code//super-quotation (altRE "``" "~~")) - (code//template (altRE "template" "template:")) + (code//template (altRE "with_template" "template")) ;; Miscellaneous (actor (altRE "actor:" "message:" "actor")) (jvm-host (altRE "import" "export" "class:" "interface:" "object" "do_to" "synchronized" "class_for")) @@ -582,9 +582,10 @@ This function also returns nil meaning don't specify the indentation." kvs))) (define-lux-indent - (function 'defun) - (macro 'defun) + ("function" 'defun) + ("macro" 'defun) ("syntax" 'defun) + ("template" 'defun) (import 'defun) (export 'defun) @@ -597,7 +598,6 @@ This function also returns nil meaning don't specify the indentation." (if 1) (cond 0) (loop 1) - (template 'defun) (All 'defun) (Ex 'defun) (Rec 'defun) |