diff options
| author | kawas44 <kawas44@gmail.com> | 2023-03-28 23:17:43 +0200 |
|---|---|---|
| committer | Amaan Qureshi <amaanq12@gmail.com> | 2023-03-29 17:48:30 -0400 |
| commit | c07c1c5b98a459e16e8098ae915fffc665e95e61 (patch) | |
| tree | 829928477fe25432272a10bc56cf2af823ce6b4c /queries/clojure | |
| parent | Update parsers: help, tlaplus, v, vhs (diff) | |
| download | nvim-treesitter-c07c1c5b98a459e16e8098ae915fffc665e95e61.tar nvim-treesitter-c07c1c5b98a459e16e8098ae915fffc665e95e61.tar.gz nvim-treesitter-c07c1c5b98a459e16e8098ae915fffc665e95e61.tar.bz2 nvim-treesitter-c07c1c5b98a459e16e8098ae915fffc665e95e61.tar.lz nvim-treesitter-c07c1c5b98a459e16e8098ae915fffc665e95e61.tar.xz nvim-treesitter-c07c1c5b98a459e16e8098ae915fffc665e95e61.tar.zst nvim-treesitter-c07c1c5b98a459e16e8098ae915fffc665e95e61.zip | |
feat(spell): support lisp like languages
Add spell to commonlisp, scheme, racket, clojure and fennel.
Diffstat (limited to 'queries/clojure')
| -rw-r--r-- | queries/clojure/highlights.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/queries/clojure/highlights.scm b/queries/clojure/highlights.scm index e5609b25b..a070b7ffd 100644 --- a/queries/clojure/highlights.scm +++ b/queries/clojure/highlights.scm @@ -18,12 +18,12 @@ (#set! "priority" 105) ; Higher priority to mark the whole sexpr as a comment ) (kwd_lit) @symbol -(str_lit) @string +(str_lit) @string @spell (num_lit) @number (char_lit) @character (bool_lit) @boolean (nil_lit) @constant.builtin -(comment) @comment +(comment) @comment @spell (regex_lit) @string.regex ["'" "`"] @string.escape |
