We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e898a94 commit 1b3e89dCopy full SHA for 1b3e89d
clojure-mode.el
@@ -911,6 +911,10 @@ any number of matches of `clojure--sym-forbidden-rest-chars'."))
911
(,(rx "`" (group-n 1 (optional "#'")
912
(+ (or (syntax symbol) (syntax word)))) "`")
913
(1 'font-lock-constant-face prepend))
914
+ ;; Highlight [[var]] comments
915
+ (,(rx "[[" (group-n 1 (optional "#'")
916
+ (+ (or (syntax symbol) (syntax word)))) "]]")
917
+ (1 'font-lock-constant-face prepend))
918
;; Highlight escaped characters in strings.
919
(clojure-font-lock-escaped-chars 0 'bold prepend)
920
;; Highlight grouping constructs in regular expressions
0 commit comments