Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Go] preliminary support for Go 1.18 #3289

Merged
merged 12 commits into from
Oct 21, 2022
12 changes: 11 additions & 1 deletion Go/Go.sublime-completions
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
"scope": "source.go",
"completions": [
// https://golang.org/ref/spec#Keywords
{
"trigger": "any",
"contents": "any",
"kind": "type"
},
{
"trigger": "append",
"contents": "append",
Expand Down Expand Up @@ -42,6 +47,11 @@
"contents": "close",
"kind": "function"
},
{
"trigger": "comparable",
"contents": "comparable",
"kind": "type"
},
{
"trigger": "complex",
"contents": "complex",
Expand Down Expand Up @@ -195,7 +205,7 @@
{
"trigger": "make",
"annotation": "make(type, 0)",
"contents": "make(${1:type}, 0)",
"contents": "make(${0:type}, 0)",
"kind": "snippet"
},
{
Expand Down
Loading