mirror of https://github.com/helix-editor/helix
Update tree-sitter-git-commit
This commit has partial support for escapes within strings.pull/9959/head
parent
51739f1290
commit
961025433d
|
@ -1617,7 +1617,7 @@ indent = { tab-width = 4, unit = "\t" }
|
||||||
|
|
||||||
[[grammar]]
|
[[grammar]]
|
||||||
name = "git-config"
|
name = "git-config"
|
||||||
source = { git = "https://github.com/the-mikedavis/tree-sitter-git-config", rev = "0e4f0baf90b57e5aeb62dcdbf03062c6315d43ea" }
|
source = { git = "https://github.com/the-mikedavis/tree-sitter-git-config", rev = "9c2a1b7894e6d9eedfe99805b829b4ecd871375e" }
|
||||||
|
|
||||||
[[language]]
|
[[language]]
|
||||||
name = "git-attributes"
|
name = "git-attributes"
|
||||||
|
|
|
@ -19,9 +19,10 @@
|
||||||
[
|
[
|
||||||
"["
|
"["
|
||||||
"]"
|
"]"
|
||||||
"\""
|
|
||||||
] @punctuation.bracket
|
] @punctuation.bracket
|
||||||
|
|
||||||
"=" @punctuation.delimiter
|
["=" "\\"] @punctuation.delimiter
|
||||||
|
|
||||||
|
(escape_sequence) @constant.character.escape
|
||||||
|
|
||||||
(comment) @comment
|
(comment) @comment
|
||||||
|
|
Loading…
Reference in New Issue