It would be nice if completion offer current package and dot import package functions and variables like sourcegraph/go-langserver does.
Consider this code:
func completeMe(i int){}
com<>
if I type com the completeMe should popup. Dot import package just like this but the completeMe is not define current package but in other package and imported use import . "package_name".
I know do import is not recommended. But I have a very old project use this extensively.
The text was updated successfully, but these errors were encountered:
It would be nice if completion offer current package and dot import package functions and variables like
sourcegraph/go-langserver
does.Consider this code:
if I type
com
thecompleteMe
should popup. Dot import package just like this but thecompleteMe
is not define current package but in other package and imported useimport . "package_name"
.I know
do import
is not recommended. But I have a very old project use this extensively.The text was updated successfully, but these errors were encountered: