mirror of https://github.com/helix-editor/helix
feat(lang): add go.mod and go.work support (#2197)
parent
8d335f63f0
commit
4144c9d2f2
@ -0,0 +1,17 @@
|
|||||||
|
[
|
||||||
|
"require"
|
||||||
|
"replace"
|
||||||
|
"go"
|
||||||
|
"exclude"
|
||||||
|
"retract"
|
||||||
|
"module"
|
||||||
|
] @keyword
|
||||||
|
|
||||||
|
"=>" @operator
|
||||||
|
|
||||||
|
(comment) @comment
|
||||||
|
|
||||||
|
[
|
||||||
|
(version)
|
||||||
|
(go_version)
|
||||||
|
] @string
|
@ -0,0 +1,2 @@
|
|||||||
|
((comment) @injection.content
|
||||||
|
(#set! injection.language "comment"))
|
@ -0,0 +1,14 @@
|
|||||||
|
[
|
||||||
|
"replace"
|
||||||
|
"go"
|
||||||
|
"use"
|
||||||
|
] @keyword
|
||||||
|
|
||||||
|
"=>" @operator
|
||||||
|
|
||||||
|
(comment) @comment
|
||||||
|
|
||||||
|
[
|
||||||
|
(version)
|
||||||
|
(go_version)
|
||||||
|
] @string
|
@ -0,0 +1,2 @@
|
|||||||
|
((comment) @injection.content
|
||||||
|
(#set! injection.language "comment"))
|
Loading…
Reference in New Issue