diff options
author | Eduardo Julian | 2022-03-14 03:33:01 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-03-14 03:33:01 -0400 |
commit | 93eb82e1bf6d2f2a6b3b0adb85f4ab93cbb766a9 (patch) | |
tree | 9301db84130bb3714d57db1196e80e7325b7f880 /lux-mode | |
parent | b8681fd206d5b5076b9737ee54f0cb0405a898d6 (diff) |
De-sigil-ification: @
Diffstat (limited to 'lux-mode')
-rw-r--r-- | lux-mode/lux-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el index ff17f0a44..5018e8894 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -363,7 +363,7 @@ Called by `imenu--generic-function'." (specialRE (let (;; Control (control//flow (altRE "case" "exec" "let" "if" "cond" "loop" "again" "do" "be")) (control//pattern-matching (altRE "\\^" "\\^or" - "\\^multi" "\\^@" "\\^template" + "\\^multi" "\\^let" "\\^template" "\\^open" "\\^|>" "\\^code" "\\^stream&" "\\^regex")) (control//logic (altRE "and" "or")) @@ -383,7 +383,7 @@ Called by `imenu--generic-function'." (type//dynamic (altRE ":dynamic" "/.:static")) (type//capability (altRE "capability:")) ;; Data - (data//record (altRE "value@" "with@" "revised@")) + (data//record (altRE "the" "has" "revised")) (data//interface (altRE "open:" "implementation" "#")) (data//implicit (altRE "implicit:" "##")) (data//collection (altRE "list" "list&" "sequence" "tree")) |