docs(go): add doctor check for gopls executable

This commit is contained in:
Itai Y. Efrat 2022-04-16 17:59:49 +03:00 committed by Henrik Lissner
parent 7b7940bb37
commit 6fc5fe56f2

View file

@ -22,3 +22,7 @@
(require 'company-go)
(unless (executable-find company-go-gocode-command)
(warn! "Couldn't find gocode. Code completion won't work")))
(when (and (featurep! +lsp)
(not (executable-find "gopls")))
(warn! "Couldn't find gopls."))