diff options
Diffstat (limited to 'lux-mode/lux-mode.el')
-rw-r--r-- | lux-mode/lux-mode.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el index 641d96ab5..ba7416b05 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -388,7 +388,7 @@ Called by `imenu--generic-function'." (code//super-quotation (altRE "``" ",,")) (code//template (altRE "with_template" "template")) ;; Miscellaneous - (jvm-host (altRE "import" "export" "class" "interface" "object" "do_to" "synchronized" "class_for")) + (jvm-host (altRE "import" "export" "class" "interface" "object" "synchronized" "class_for")) (alternative-format (altRE "char" "bin" "oct" "hex")) (documentation (altRE "comment" "documentation")) (function-application (altRE "|>" "<|" "left" "right" "all")) @@ -618,9 +618,10 @@ This function also returns nil meaning don't specify the indentation." (All 'defun) (Ex 'defun) (Rec 'defun) + (synchronized 'defun) (object 'defun) - (do_to 'defun) + (remember 'defun) (to_do 'defun) (fix_me 'defun) |