mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-19 03:40:04 -04:00
highlights(gitattributes): fix captures
This commit is contained in:
parent
be2b89edc8
commit
54ca5ae2f0
2 changed files with 6 additions and 6 deletions
|
|
@ -1,15 +1,15 @@
|
||||||
(dir_sep) @punctuation.delimiter
|
(dir_sep) @punctuation.delimiter
|
||||||
|
|
||||||
(wildcard) @punctuation.special
|
|
||||||
|
|
||||||
(quoted_pattern
|
(quoted_pattern
|
||||||
("\"" @character.special))
|
("\"" @punctuation.special))
|
||||||
|
|
||||||
(range_notation) @string.special
|
(range_notation) @string.special
|
||||||
|
|
||||||
(range_notation
|
(range_notation
|
||||||
[ "[" "]" ] @punctuation.bracket)
|
[ "[" "]" ] @punctuation.bracket)
|
||||||
|
|
||||||
|
(wildcard) @character.special
|
||||||
|
|
||||||
(range_negation) @operator
|
(range_negation) @operator
|
||||||
|
|
||||||
(character_class) @constant
|
(character_class) @constant
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
vendor/** linguist-vendored=true
|
vendor/** linguist-vendored=true
|
||||||
# ^ punctuation.delimiter
|
# ^ punctuation.delimiter
|
||||||
# ^^ punctuation.special
|
# ^^ character.special
|
||||||
# ^^^^^^^^^^^^^^^^^ parameter
|
# ^^^^^^^^^^^^^^^^^ parameter
|
||||||
# ^ operator
|
# ^ operator
|
||||||
# ^^^^ boolean
|
# ^^^^ boolean
|
||||||
|
|
@ -25,11 +25,11 @@ vendor/** linguist-vendored=true
|
||||||
# ^^^^^^^^^^ parameter
|
# ^^^^^^^^^^ parameter
|
||||||
|
|
||||||
"_\u4E00\t\56txt" encoding=UTF-16
|
"_\u4E00\t\56txt" encoding=UTF-16
|
||||||
# <- character.special
|
# <- punctuation.special
|
||||||
# ^^^^^^ string.escape
|
# ^^^^^^ string.escape
|
||||||
# ^^ string.escape
|
# ^^ string.escape
|
||||||
# ^^^ string.escape
|
# ^^^ string.escape
|
||||||
# ^ character.special
|
# ^ punctuation.special
|
||||||
# ^^^^^^^^ variable.builtin
|
# ^^^^^^^^ variable.builtin
|
||||||
# ^ operator
|
# ^ operator
|
||||||
# ^^^^^^ string
|
# ^^^^^^ string
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue