Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'runtime/queries/clojure/highlights.scm')
-rw-r--r--runtime/queries/clojure/highlights.scm16
1 files changed, 8 insertions, 8 deletions
diff --git a/runtime/queries/clojure/highlights.scm b/runtime/queries/clojure/highlights.scm
index 8155e6e3..1441ea97 100644
--- a/runtime/queries/clojure/highlights.scm
+++ b/runtime/queries/clojure/highlights.scm
@@ -10,14 +10,6 @@
(comment) @comment
-;; other symbols
-(sym_lit) @variable
-
-;; other calls
-(list_lit
- .
- (sym_lit) @function)
-
;; metadata experiment
(meta_lit
marker: "^" @punctuation)
@@ -69,12 +61,20 @@
((sym_lit) @operator
(#match? @operator "^%"))
+;; other calls
+(list_lit
+ .
+ (sym_lit) @function)
+
;; interop-ish
(list_lit
.
(sym_lit) @function.method
(#match? @function.method "^\\."))
+;; other symbols
+(sym_lit) @variable
+
;; quote
(quoting_lit) @constant.character.escape