aboutsummaryrefslogtreecommitdiff
path: root/lux-mode/lux-mode.el
diff options
context:
space:
mode:
authorEduardo Julian2022-06-26 19:37:45 -0400
committerEduardo Julian2022-06-26 19:37:45 -0400
commit853d28f803e75d125915a81dcdcd140513efe3d2 (patch)
tree41d24b6cb5593b631793efa77f53359e8229ea37 /lux-mode/lux-mode.el
parent9f6505491e8a5c8a159ce094fe0af6f4fef0c5cf (diff)
Re-named directives to declarations.
Diffstat (limited to 'lux-mode/lux-mode.el')
-rw-r--r--lux-mode/lux-mode.el5
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)