You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whether provided by gopls or not, govim should provide the ability to add/remove an import. Additionally, it should be possible to tab complete the import to add. Fuzzy matching could/should be provided by an external plugin, something like fzf.
e.g.
:GOVIMAddImport en<Tab>
... should then provide all the imports that start with (or contain, I think Vim defines these semantics somewhere) en. Which could include encoding/json.
If this is not provided by gopls, then govim should watch the main module and pre-cache the list of packages that can be imported.
The text was updated successfully, but these errors were encountered:
Whether provided by
gopls
or not,govim
should provide the ability to add/remove an import. Additionally, it should be possible to tab complete the import to add. Fuzzy matching could/should be provided by an external plugin, something likefzf
.e.g.
... should then provide all the imports that start with (or contain, I think Vim defines these semantics somewhere)
en
. Which could includeencoding/json
.If this is not provided by
gopls
, thengovim
should watch the main module and pre-cache the list of packages that can be imported.The text was updated successfully, but these errors were encountered: