diff options
author | Eduardo Julian | 2022-06-16 21:37:38 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-06-16 21:37:38 -0400 |
commit | 7249707e7c09be68dfb7507ba363efd3300a0141 (patch) | |
tree | 1fb4764458da16353315ea7e267f997c9be70f49 /lux-mode | |
parent | e00e0b5f1e5fb509cf8f32424397110f524b8148 (diff) |
De-sigil-ification: suffix : [Part 14]
Diffstat (limited to 'lux-mode')
-rw-r--r-- | lux-mode/lux-mode.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el index c4ebcf170..fbba53c20 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -377,10 +377,10 @@ Called by `imenu--generic-function'." (type//primitive (altRE "primitive" "abstraction" "representation" "transmutation")) (type//poly (altRE "polytypic")) (type//dynamic (altRE "dynamic" "static")) - (type//capability (altRE "capability:")) + (type//capability (altRE "capability")) ;; Data (data//record (altRE "the" "has" "revised")) - (data//interface (altRE "open:" "implementation" "with" "at")) + (data//interface (altRE "use" "implementation" "with" "at")) (data//implicit (altRE "implicitly" "a/an" "a" "an")) (data//collection (altRE "list" "sequence" "tree")) ;; Code @@ -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")) - (definition (altRE "\\.using" + (definition (altRE "\\.require" "def" "inlined" "type:" "program:" "macro" "syntax" "exception:" @@ -601,6 +601,7 @@ This function also returns nil meaning don't specify the indentation." ("sharing" 'defun) ("by_example" 'defun) + ("capability" 'defun) (let 'defun) (case 'defun) |