mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-19 03:40:04 -04:00
feat(idl): update parser and queries (#6901)
Signed-off-by: DragonBillow <DragonBillow@outlook.com>
This commit is contained in:
parent
e9ec8b4658
commit
d5969c481e
2 changed files with 15 additions and 2 deletions
|
|
@ -324,7 +324,7 @@
|
||||||
"revision": "6858695eba0e63b9e0fceef081d291eb352abce8"
|
"revision": "6858695eba0e63b9e0fceef081d291eb352abce8"
|
||||||
},
|
},
|
||||||
"idl": {
|
"idl": {
|
||||||
"revision": "995d917f120ef428a086d15935d20ab2fb8c345c"
|
"revision": "d8c1cf254f2e9d0cf9f111190c408bf3480e34e2"
|
||||||
},
|
},
|
||||||
"ini": {
|
"ini": {
|
||||||
"revision": "87176e524f0a98f5be75fa44f4f0ff5c6eac069c"
|
"revision": "87176e524f0a98f5be75fa44f4f0ff5c6eac069c"
|
||||||
|
|
|
||||||
|
|
@ -106,7 +106,12 @@
|
||||||
|
|
||||||
(boolean_literal) @boolean
|
(boolean_literal) @boolean
|
||||||
|
|
||||||
(number_literal) @number
|
(integer_literal) @number
|
||||||
|
|
||||||
|
[
|
||||||
|
(floating_pt_literal)
|
||||||
|
(fixed_pt_literal)
|
||||||
|
] @number.float
|
||||||
|
|
||||||
(char_literal) @character
|
(char_literal) @character
|
||||||
|
|
||||||
|
|
@ -400,3 +405,11 @@
|
||||||
(system_lib_string
|
(system_lib_string
|
||||||
"<" @string
|
"<" @string
|
||||||
">" @string)
|
">" @string)
|
||||||
|
|
||||||
|
(extend_annotation_appl
|
||||||
|
"//@" @attribute
|
||||||
|
(annotation_appl_custom_body))
|
||||||
|
|
||||||
|
(extend_annotation_appl
|
||||||
|
"//@" @attribute.builtin
|
||||||
|
(annotation_appl_builtin_body))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue