mirror of https://github.com/helix-editor/helix
verilog: separate highlighting of keyword operators (#13473)
parent
fb45017a26
commit
e53462c78c
|
@ -106,6 +106,7 @@
|
|||
"+"
|
||||
"/"
|
||||
"*"
|
||||
"**"
|
||||
"^"
|
||||
"&"
|
||||
"|"
|
||||
|
@ -118,8 +119,6 @@
|
|||
"'{"
|
||||
"<="
|
||||
"@"
|
||||
"or"
|
||||
"and"
|
||||
"=="
|
||||
"!="
|
||||
"==="
|
||||
|
@ -131,8 +130,15 @@
|
|||
"%"
|
||||
">>"
|
||||
"<<"
|
||||
">>>"
|
||||
"<<<"
|
||||
"|="
|
||||
(inc_or_dec_operator)
|
||||
"?"
|
||||
] @operator
|
||||
[
|
||||
"or"
|
||||
"and"
|
||||
] @keyword.operator
|
||||
|
||||
(cast
|
||||
|
|
Loading…
Reference in New Issue