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 e502dc4 commit bb5497fCopy full SHA for bb5497f
clojure-mode-test.el
@@ -171,6 +171,12 @@ POS."
171
:tags '(fontification syntax-table)
172
(should (eq (clojure-test-face-at 4 8 "(= false x)") 'font-lock-constant-face)))
173
174
+(ert-deftest clojure-mode-syntax-table/keyword-meta ()
175
+ :tags '(fontification syntax-table)
176
+ (clojure-test-with-temp-buffer "^:meta-data"
177
+ (should (eq (clojure-test-face-at 1 1) nil))
178
+ (should (eq (clojure-test-face-at 2 11) 'clojure-keyword-face))))
179
+
180
(ert-deftest clojure-mode-syntax-table/characters ()
181
182
(should (eq (clojure-test-face-at 1 2 "\\a") 'clojure-character-face))
0 commit comments