mirror of https://github.com/helix-editor/helix
fix(highlights/go): defer, go, goto are keywords (#13425)
parent
95c8d9c9e9
commit
448e3c2ef5
|
@ -113,6 +113,12 @@
|
||||||
"type"
|
"type"
|
||||||
] @keyword
|
] @keyword
|
||||||
|
|
||||||
|
[
|
||||||
|
"defer"
|
||||||
|
"go"
|
||||||
|
"goto"
|
||||||
|
] @keyword.control
|
||||||
|
|
||||||
[
|
[
|
||||||
"if"
|
"if"
|
||||||
"else"
|
"else"
|
||||||
|
@ -154,12 +160,6 @@
|
||||||
"const"
|
"const"
|
||||||
] @keyword.storage.modifier
|
] @keyword.storage.modifier
|
||||||
|
|
||||||
[
|
|
||||||
"defer"
|
|
||||||
"goto"
|
|
||||||
"go"
|
|
||||||
] @function.macro
|
|
||||||
|
|
||||||
; Delimiters
|
; Delimiters
|
||||||
|
|
||||||
[
|
[
|
||||||
|
|
Loading…
Reference in New Issue