deoplete-plugins / deoplete-go

Asynchronous Go completion for Neovim. deoplete source for Go.
MIT License
426 stars 28 forks source link

Support for gopls #151

Closed svanharmelen closed 5 years ago

svanharmelen commented 5 years ago

I was wondering if there are any plans to add support for the new gopls Go Language server?

vim-go is already switched to using gopls for completion instead of gocode, and things are much quicker and smoother because of it.

But I like to keep using deoplete for autocompletion, so having support for gopls would be awesome.

Thanks!

Shougo commented 5 years ago

Unfortunately, it cannot. gopls is LSP client.

deoplete-go is not LSP client. You should use LanguageClient-neovim or deoplete-tabnine instead.

svanharmelen commented 5 years ago

Yeah, I was already looking at the language client as well. Will continue down that path then. Thanks!