aboutsummaryrefslogtreecommitdiff
path: root/lux-mode/lux-mode.el
diff options
context:
space:
mode:
Diffstat (limited to 'lux-mode/lux-mode.el')
-rw-r--r--lux-mode/lux-mode.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el
index 0e1d21866..36899dd73 100644
--- a/lux-mode/lux-mode.el
+++ b/lux-mode/lux-mode.el
@@ -368,7 +368,12 @@ Called by `imenu--generic-function'."
(control//logic (altRE "and" "or"))
(control//contract (altRE "pre" "post"))
;; Type
- (type//syntax (altRE "Variant" "Or" "Tuple" "And" "->" "All" "Ex" "Rec" "primitive" "type"))
+ (type//syntax (altRE "Union" "Or" "Variant"
+ "Tuple" "And" "Record"
+ "Rec"
+ "primitive" "->"
+ "All" "Ex"
+ "type"))
(type//checking (altRE ":" ":as" ":let" ":~" ":expected" ":of" ":sharing" ":by_example" ":hole"))
(type//abstract (altRE "abstract:" ":abstraction" ":representation" ":transmutation" "\\^:representation"))
(type//unit (altRE "unit:" "scale:"))