mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-19 03:40:04 -04:00
Add operators
This commit is contained in:
parent
042464c1c5
commit
d262d4101e
1 changed files with 27 additions and 1 deletions
|
|
@ -13,7 +13,33 @@
|
||||||
(marker_annotation
|
(marker_annotation
|
||||||
name: (identifier) @attribute)
|
name: (identifier) @attribute)
|
||||||
|
|
||||||
"@" @operator
|
; Operators
|
||||||
|
[
|
||||||
|
"@"
|
||||||
|
"+"
|
||||||
|
"++"
|
||||||
|
"-"
|
||||||
|
"--"
|
||||||
|
"&"
|
||||||
|
"&&"
|
||||||
|
"|"
|
||||||
|
"||"
|
||||||
|
"!="
|
||||||
|
"=="
|
||||||
|
"*"
|
||||||
|
"/"
|
||||||
|
"%"
|
||||||
|
"<"
|
||||||
|
"<="
|
||||||
|
">"
|
||||||
|
">="
|
||||||
|
"="
|
||||||
|
"-="
|
||||||
|
"+="
|
||||||
|
"*="
|
||||||
|
"/="
|
||||||
|
"%="
|
||||||
|
] @operator
|
||||||
|
|
||||||
; Types
|
; Types
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue