docs(go): disable gocode doctor check if lsp is on
This commit is contained in:
parent
d501b48f2e
commit
7b7940bb37
1 changed files with 2 additions and 1 deletions
|
@ -17,7 +17,8 @@
|
||||||
(unless (executable-find "gomodifytags")
|
(unless (executable-find "gomodifytags")
|
||||||
(warn! "Couldn't find gomodifytags. Manipulating struct tags will not work"))
|
(warn! "Couldn't find gomodifytags. Manipulating struct tags will not work"))
|
||||||
|
|
||||||
(when (featurep! :completion company)
|
(when (and (featurep! :completion company)
|
||||||
|
(not (featurep! +lsp)))
|
||||||
(require 'company-go)
|
(require 'company-go)
|
||||||
(unless (executable-find company-go-gocode-command)
|
(unless (executable-find company-go-gocode-command)
|
||||||
(warn! "Couldn't find gocode. Code completion won't work")))
|
(warn! "Couldn't find gocode. Code completion won't work")))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue