diff options
author | Eduardo Julian | 2022-06-25 20:24:43 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-06-25 20:24:43 -0400 |
commit | fb46beb8bd784ba92949bf2c535dc13c2f003ef0 (patch) | |
tree | 28dbec5e8e6a1307a5aee28772d9aa897349bc57 /lux-mode | |
parent | a384e0c9426d6110fa4c104a1327808a0aff91b0 (diff) |
De-sigil-ification: suffix : [Part 15]
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 5877a72f4..000cb4aaa 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -372,7 +372,7 @@ Called by `imenu--generic-function'." "Primitive" "->" "All" "Ex" "Interface" - "type")) + "type_literal")) (type//checking (altRE "is" "as" "let" "as_expected" "type_of" "sharing" "by_example" "hole")) (type//primitive (altRE "primitive" "abstraction" "representation" "transmutation")) (type//poly (altRE "polytypic")) @@ -396,7 +396,7 @@ Called by `imenu--generic-function'." (remember (altRE "remember" "to_do" "fix_me")) (extension (altRE "analysis" "synthesis" "generation" "directive")) (definition (altRE "\\.require" - "def" "inlined" "type:" "program:" + "def" "inlined" "type" "program:" "macro" "syntax" "exception:"))) (let ((control (altRE control//flow @@ -584,6 +584,7 @@ This function also returns nil meaning don't specify the indentation." ("polytypic" 'defun) ("def" 'defun) + ("type" 'defun) ("inlined" 'defun) ("context" 'defun) ("primitive" 'defun) |