Use lsp-disabled-clients instead of lsp-enabled-clients

- lsp-mode supports defining remote versions of each clients(e. g. clangd which
works over tramp). Before this change the language server will be disabled
because it has different server-id.
This commit is contained in:
Ivan Yonchovski 2019-12-07 15:58:32 +02:00 committed by Maximilian Wolff
parent 085ae8af33
commit 95650e0fbb
No known key found for this signature in database
GPG key ID: 2DD07025BFDBD89A

View file

@ -85,7 +85,7 @@
(spacemacs/lsp-define-extensions
"c-c++" "lsp-clangd"
'clangd-other-file "textDocument/switchSourceHeader" 'buffer-file-name)
(set (make-local-variable 'lsp-enabled-clients) '(clangd))
(set (make-local-variable 'lsp-disabled-clients) '(cquery ccls))
(lsp))
;; ccls
@ -171,7 +171,7 @@
;;(evil-set-initial-state 'ccls--tree-mode 'emacs)
;;evil-record-macro keybinding clobbers q in cquery-tree-mode-map for some reason?
;;(evil-make-overriding-map 'ccls-tree-mode-map)
(set (make-local-variable 'lsp-enabled-clients) '(ccls))
(set (make-local-variable 'lsp-disabled-clients) '(clangd cquery))
(lsp))
;; cquery
@ -245,7 +245,7 @@
;;(evil-set-initial-state 'ccls--tree-mode 'emacs)
;;evil-record-macro keybinding clobbers q in cquery-tree-mode-map for some reason?
;;(evil-make-overriding-map 'ccls-tree-mode-map)
(set (make-local-variable 'lsp-enabled-clients) '(cquery))
(set (make-local-variable 'lsp-disabled-clients) '(ccls changd))
(lsp))
(defun spacemacs//c-c++-setup-lsp-company ()
@ -505,4 +505,3 @@ is non-nil."
"Add before-save hook for c++-organize-includes."
(add-hook 'before-save-hook
#'spacemacs//c++-organize-includes-on-save nil t))