We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8ff0c6d + 5d52be4 commit d3f12abCopy full SHA for d3f12ab
clojure-mode.el
@@ -475,6 +475,9 @@ Called by `imenu--generic-function'."
475
("\\(?:\\<\\|\\.\\)@?\\([a-zA-Z][a-zA-Z0-9$_-]*\\)/" 1 font-lock-type-face)
476
;; fooBar
477
("\\(?:\\<\\|/\\)\\([a-z]+[A-Z]+[a-zA-Z0-9$]*\\>\\)" 1 'clojure-interop-method-face)
478
+ ;; Highlight `code` marks, just like `elisp'.
479
+ (,(rx "`" (group-n 1 (+ (or (syntax symbol) (syntax word)))) "`")
480
+ (1 'font-lock-constant-face prepend))
481
;; Highlight grouping constructs in regular expressions
482
(clojure-font-lock-regexp-groups
483
(1 'font-lock-regexp-grouping-construct prepend))))
0 commit comments