mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 11:06:54 -04:00
feat(gotmpl,helm)!: update parser and queries
This commit is contained in:
parent
35a124cb60
commit
37cec5ec59
2 changed files with 10 additions and 3 deletions
|
|
@ -811,7 +811,7 @@ return {
|
|||
},
|
||||
gotmpl = {
|
||||
install_info = {
|
||||
revision = '5f19a36bb1eebb30454e277b222b278ceafed0dd',
|
||||
revision = '65f4f86c3aaa9dabab36e3482584e8a111cf7db1',
|
||||
url = 'https://github.com/ngalaiko/tree-sitter-go-template',
|
||||
},
|
||||
maintainers = { '@qvalentin' },
|
||||
|
|
@ -923,7 +923,7 @@ return {
|
|||
helm = {
|
||||
install_info = {
|
||||
location = 'dialects/helm',
|
||||
revision = '5f19a36bb1eebb30454e277b222b278ceafed0dd',
|
||||
revision = '65f4f86c3aaa9dabab36e3482584e8a111cf7db1',
|
||||
url = 'https://github.com/ngalaiko/tree-sitter-go-template',
|
||||
},
|
||||
maintainers = { '@qvalentin' },
|
||||
|
|
|
|||
|
|
@ -59,7 +59,6 @@
|
|||
[
|
||||
"if"
|
||||
"else"
|
||||
"else if"
|
||||
"end"
|
||||
] @keyword.conditional
|
||||
(#set! priority 110))
|
||||
|
|
@ -98,6 +97,14 @@
|
|||
] @keyword.conditional
|
||||
(#set! priority 110))
|
||||
|
||||
(continue_action
|
||||
"continue" @keyword.repeat
|
||||
(#set! priority 110))
|
||||
|
||||
(break_action
|
||||
"break" @keyword.repeat
|
||||
(#set! priority 110))
|
||||
|
||||
; Literals
|
||||
([
|
||||
(interpreted_string_literal)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue