mirror of
https://github.com/golang/go
synced 2024-11-18 19:54:44 -07:00
8a925fa4c0
Add support for var/func/const/type/import keywords at the file scope. I left out "package" because, currently, if you are completing something that means you must already have a package declaration. The main hurdle was that anything other than a decl keyword shows up as an *ast.BadDecl at the file scope. To properly detect the prefix we manually scan for the token containing the position. I also made a couple small drive-by improvements: - Also suggest "goto" and "type" keywords in functions. - Allow completing directly before a comment, e.g. "foo<>//". I needed this for a test that would have been annoying to write otherwise. Updates golang/go#34009. Change-Id: I290e7bdda9e66a16f996cdc291985a54bf375231 Reviewed-on: https://go-review.googlesource.com/c/tools/+/217500 Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Robert Findley <rfindley@google.com> |
||
---|---|---|
.. | ||
comment_test.go | ||
comment.go | ||
completion_builtin.go | ||
completion_format.go | ||
completion_keywords.go | ||
completion_labels.go | ||
completion_literal.go | ||
completion_snippet.go | ||
completion.go | ||
deep_completion.go | ||
diagnostics.go | ||
errors.go | ||
folding_range.go | ||
format_test.go | ||
format.go | ||
highlight.go | ||
hover.go | ||
identifier.go | ||
implementation.go | ||
options.go | ||
references.go | ||
rename_check.go | ||
rename.go | ||
signature_help.go | ||
source_test.go | ||
symbols.go | ||
util.go | ||
view.go | ||
workspace_symbol.go |