diff options
author | Eduardo Julian | 2019-02-03 03:20:44 -0400 |
---|---|---|
committer | Eduardo Julian | 2019-02-03 03:20:44 -0400 |
commit | 700f82c940794684cbce9535274f6d7ea3f9c692 (patch) | |
tree | dc2a32a735b1a5706416cd1f2ab15f0a5f7736d6 /lux-mode | |
parent | 0f06e0a5775a3588b7b6f35e975d39b2724a6f65 (diff) |
Added branding to capabilities to better differentiate between capabilities that share the same inputs and outputs.
Diffstat (limited to 'lux-mode')
-rw-r--r-- | lux-mode/lux-mode.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el index 46d0e77fe..53aecac83 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -250,6 +250,7 @@ Called by `imenu--generic-function'." (type//unit (altRE "unit:" "scale:")) (type//poly (altRE "poly:" "derived:")) (type//dynamic (altRE ":dynamic" ":check")) + (type//capability (altRE "capability:")) ;; Data (data//record (altRE "get@" "set@" "update@")) (data//signature (altRE "signature:" "structure:" "open:" "structure" "::")) @@ -275,7 +276,8 @@ Called by `imenu--generic-function'." type//abstract type//unit type//poly - type//dynamic)) + type//dynamic + type//capability)) (data (altRE data//record data//signature data//implicit |