fix(highlights): add missing js operators

This commit is contained in:
Steven Sojka 2020-09-08 07:52:46 -05:00
parent 8d6c40ce24
commit 2fd3236a92

View file

@ -113,23 +113,36 @@
"." @punctuation.delimiter "." @punctuation.delimiter
"," @punctuation.delimiter "," @punctuation.delimiter
"--" @operator [
"-" @operator "--"
"-=" @operator "-"
"&&" @operator "-="
"+" @operator "&&"
"++" @operator "+"
"+=" @operator "++"
"<" @operator "+="
"<<" @operator "&="
"=" @operator "/="
"==" @operator "**="
"===" @operator "<<="
"=>" @operator "<"
">" @operator "<="
">>" @operator "<<"
"||" @operator "="
"??" @operator "=="
"==="
"!="
"!=="
"=>"
">"
">="
">>"
"||"
"%"
"%="
] @operator
(ternary_expression ["?" ":"] @operator)
"(" @punctuation.bracket "(" @punctuation.bracket
")" @punctuation.bracket ")" @punctuation.bracket