From 9a835bde8908e4ebd1c8972211acadc5895d720a Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Tue, 14 Jun 2022 10:17:32 -0400 Subject: De-sigil-ification: suffix : [Part 8] --- lux-mode/lux-mode.el | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'lux-mode/lux-mode.el') diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el index 7d9f18203..8b79a6cf5 100644 --- a/lux-mode/lux-mode.el +++ b/lux-mode/lux-mode.el @@ -376,7 +376,7 @@ Called by `imenu--generic-function'." (type//checking (altRE "is" "as" "let" "as_expected" "type_of" "sharing" "by_example" "hole")) (type//primitive (altRE "primitive:" "abstraction" "representation" "transmutation")) (type//unit (altRE "unit:" "scale:")) - (type//poly (altRE "poly:")) + (type//poly (altRE "polytypic")) (type//dynamic (altRE "dynamic" "static")) (type//capability (altRE "capability:")) ;; Data @@ -389,7 +389,7 @@ Called by `imenu--generic-function'." (code//super-quotation (altRE "``" "~~")) (code//template (altRE "with_template" "template")) ;; Miscellaneous - (jvm-host (altRE "import" "export" "class:" "interface:" "object" "do_to" "synchronized" "class_for")) + (jvm-host (altRE "import" "export" "class:" "interface" "object" "do_to" "synchronized" "class_for")) (alternative-format (altRE "char" "bin" "oct" "hex")) (documentation (altRE "comment" "documentation:")) (function-application (altRE "|>" "<|" "left" "right" "all")) @@ -579,18 +579,20 @@ This function also returns nil meaning don't specify the indentation." (define-lux-indent ("function" 'defun) + ("macro" 'defun) ("syntax" 'defun) ("template" 'defun) - ("message" 'defun) + ("polytypic" 'defun) ("analysis" 'defun) ("synthesis" 'defun) ("generation" 'defun) ("directive" 'defun) - (import 'defun) - (export 'defun) + ("interface" 'defun) + ("import" 'defun) + ("export" 'defun) (let 'defun) (case 'defun) -- cgit v1.2.3