diff options
Diffstat (limited to 'lux-mode')
-rw-r--r-- | lux-mode/lux-mode.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el index 8b79a6cf5..6979865fd 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -389,7 +389,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" "do_to" "synchronized" "class_for")) (alternative-format (altRE "char" "bin" "oct" "hex")) (documentation (altRE "comment" "documentation:")) (function-application (altRE "|>" "<|" "left" "right" "all")) @@ -590,6 +590,7 @@ This function also returns nil meaning don't specify the indentation." ("generation" 'defun) ("directive" 'defun) + ("class" 'defun) ("interface" 'defun) ("import" 'defun) ("export" 'defun) |