We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f14f151 commit bc18175Copy full SHA for bc18175
clojure-mode.el
@@ -275,7 +275,7 @@
275
"\\>")
276
1 font-lock-type-face)
277
;; Constant values (keywords), including as metadata e.g. ^:static
278
- ("\\<^?:\\(\\sw\\|#\\)+\\>" 0 font-lock-constant-face)
+ ("\\<^?:\\(\\sw\\)+\\>" 0 font-lock-constant-face)
279
;; Meta type annotation #^Type or ^Type
280
("#?^\\sw+" 0 font-lock-preprocessor-face)
281
("\\<io\\!\\>" 0 font-lock-warning-face)
@@ -365,6 +365,8 @@ Clojure to load that file."
365
(modify-syntax-entry ?\[ "(]" table)
366
(modify-syntax-entry ?\] ")[" table)
367
(modify-syntax-entry ?^ "'" table)
368
+ ;; Make hash a usual word character
369
+ (modify-syntax-entry ?# "w" table)
370
table))
371
372
(defvar clojure-mode-abbrev-table nil
0 commit comments