mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-15 09:50:04 -04:00
feat(t32): update queries from upstream (#6440)
Adds support for new node type `elif_block`.
This commit is contained in:
parent
2c6ab9a09c
commit
f22f024e78
4 changed files with 9 additions and 2 deletions
|
|
@ -208,6 +208,9 @@
|
|||
(if_block
|
||||
command: (identifier) @keyword.conditional)
|
||||
|
||||
(elif_block
|
||||
command: (identifier) @keyword.conditional)
|
||||
|
||||
(else_block
|
||||
command: (identifier) @keyword.conditional)
|
||||
|
||||
|
|
|
|||
|
|
@ -6,6 +6,8 @@
|
|||
(if_block
|
||||
(block)) @indent.dedent
|
||||
|
||||
(elif_block) @indent.branch
|
||||
|
||||
(else_block) @indent.branch
|
||||
|
||||
(else_block
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue