diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-04-05 18:06:24 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2024-04-05 18:36:17 +0200 |
commit | 39a0e6bf3c04f26cc2a43993fd63d94039b7262d (patch) | |
tree | 8f5585ef75963002572363f354d4c3768cc82072 /runtime/queries/query | |
parent | 73de98256cf3932dca156fbfd0c82c1cc10d487e (diff) | |
download | rneovim-39a0e6bf3c04f26cc2a43993fd63d94039b7262d.tar.gz rneovim-39a0e6bf3c04f26cc2a43993fd63d94039b7262d.tar.bz2 rneovim-39a0e6bf3c04f26cc2a43993fd63d94039b7262d.zip |
fix(treesitter): update parsers and queries
Diffstat (limited to 'runtime/queries/query')
-rw-r--r-- | runtime/queries/query/highlights.scm | 22 |
1 files changed, 10 insertions, 12 deletions
diff --git a/runtime/queries/query/highlights.scm b/runtime/queries/query/highlights.scm index cdedb23e29..abc7aa50ad 100644 --- a/runtime/queries/query/highlights.scm +++ b/runtime/queries/query/highlights.scm @@ -68,20 +68,18 @@ ((predicate name: (identifier) @_name - parameters: - (parameters - (string - "\"" @string - "\"" @string) @string.regexp)) + parameters: (parameters + (string + "\"" @string + "\"" @string) @string.regexp)) (#any-of? @_name "match" "not-match" "vim-match" "not-vim-match" "lua-match" "not-lua-match")) ((predicate name: (identifier) @_name - parameters: - (parameters - (string - "\"" @string - "\"" @string) @string.regexp - . - (string) .)) + parameters: (parameters + (string + "\"" @string + "\"" @string) @string.regexp + . + (string) .)) (#any-of? @_name "gsub" "not-gsub")) |