Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clojure-ts-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -806,10 +806,10 @@ and end of the NODE, so we ignore them."
'(_ :* @font-lock-comment-face)))
(:match "^\\(\\(clojure.core/\\)?comment\\)$" @font-lock-comment-delimiter-face)))

:feature 'deref ;; not part of clojure-mode, but a cool idea?
:feature 'deref
:language 'clojure
'((derefing_lit
marker: "@" @font-lock-warning-face))))
marker: "@" @font-lock-punctuation-face))))

(defvar clojure-ts--clojure-extra-queries nil
"Pre-compiled Tree-sitter queries produced from `clojure-ts-extra-def-forms'.")
Expand Down
2 changes: 1 addition & 1 deletion test/clojure-ts-mode-font-lock-test.el
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ DESCRIPTION is the description of the spec."
(clojure-ts-mode))
(font-lock-ensure)
(expect (get-text-property 1 'face)
:to-equal 'font-lock-warning-face)))
:to-equal 'font-lock-punctuation-face)))

(it "should highlight function calls at level 4"
(with-temp-buffer
Expand Down
Loading