We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c26b9c3 commit affd573Copy full SHA for affd573
clojure-mode.el
@@ -465,7 +465,7 @@ any number of matches of `clojure--sym-forbidden-rest-chars'."))
465
466
(defconst clojure-font-lock-keywords
467
(eval-when-compile
468
- `(;; Top-level variable definition
+ `( ;; Top-level variable definition
469
(,(concat "(\\(?:clojure.core/\\)?\\("
470
(regexp-opt '("def" "defonce"))
471
;; variable declarations
@@ -517,7 +517,7 @@ any number of matches of `clojure--sym-forbidden-rest-chars'."))
517
(,(concat
518
"("
519
(regexp-opt
520
- '("def" "do" "if" "let" "var" "fn" "loop"
+ '("def" "do" "if" "let" "let*" "var" "fn" "fn*" "loop" "loop*"
521
"recur" "throw" "try" "catch" "finally"
522
"set!" "new" "."
523
"monitor-enter" "monitor-exit" "quote") t)
0 commit comments