diff options
author | Eduardo Julian | 2022-06-26 19:37:45 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-06-26 19:37:45 -0400 |
commit | 853d28f803e75d125915a81dcdcd140513efe3d2 (patch) | |
tree | 41d24b6cb5593b631793efa77f53359e8229ea37 /lux-mode | |
parent | 9f6505491e8a5c8a159ce094fe0af6f4fef0c5cf (diff) |
Re-named directives to declarations.
Diffstat (limited to 'lux-mode')
-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 b9c0333ec..f3b36dd27 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -394,7 +394,7 @@ Called by `imenu--generic-function'." (function-application (altRE "|>" "<|" "left" "right" "all")) (function-definition (altRE "function" "|>>" "<<|")) (remember (altRE "remember" "to_do" "fix_me")) - (extension (altRE "analysis" "synthesis" "generation" "directive")) + (extension (altRE "analysis" "synthesis" "generation" "declaration")) (definition (altRE "\\.require" "def" "inlined" "type" "program:" "macro" "syntax" @@ -589,10 +589,11 @@ This function also returns nil meaning don't specify the indentation." ("inlined" 'defun) ("context" 'defun) ("primitive" 'defun) + ("analysis" 'defun) ("synthesis" 'defun) ("generation" 'defun) - ("directive" 'defun) + ("declaration" 'defun) ("class" 'defun) ("interface" 'defun) |