aboutsummaryrefslogtreecommitdiff
path: root/lux-mode
diff options
context:
space:
mode:
authorEduardo Julian2019-01-02 21:34:37 -0400
committerEduardo Julian2019-01-02 21:34:37 -0400
commit7dd7cf51f3ca07de4c4d3834efd045bb4960c686 (patch)
tree2a40e9487251b188f46b24f38247c4a9eb8af43a /lux-mode
parent81eb1c4c0047af78449ac5cc202fc7755f4944da (diff)
Added macros for remembering things to the programmer based on deadlines.
Diffstat (limited to 'lux-mode')
-rw-r--r--lux-mode/lux-mode.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lux-mode/lux-mode.el b/lux-mode/lux-mode.el
index 45fbb75ec..970bd89bb 100644
--- a/lux-mode/lux-mode.el
+++ b/lux-mode/lux-mode.el
@@ -263,7 +263,8 @@ Called by `imenu--generic-function'."
(jvm-host (altRE "class:" "interface:" "import:" "object" "do-to" "synchronized" "class-for"))
(alternative-format (altRE "char" "bin" "oct" "hex"))
(documentation (altRE "doc" "comment"))
- (function-application (altRE "|>" "|>>" "<|" "<<|" "_\\$" "\\$_")))
+ (function-application (altRE "|>" "|>>" "<|" "<<|" "_\\$" "\\$_"))
+ (remember (altRE "remember" "to-do" "fix-me")))
(let ((control (altRE control//flow
control//pattern-matching
control//logic
@@ -293,6 +294,7 @@ Called by `imenu--generic-function'."
alternative-format
documentation
function-application
+ remember
;;;;;;;;;;;;;;;;;;;;;;;;
"\\.module:"
"def:" "type:" "program:" "context:"