You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
The package nvim-lsp changed its name into lspconfig a few days ago (neovim/nvim-lspconfig@ddcd9e6). So I get the message "No LSP plugin found" when trying to do a call hierarchy.
I found a quick workaround to be able to use call hierarchies again:
Hello,
The package nvim-lsp changed its name into lspconfig a few days ago (neovim/nvim-lspconfig@ddcd9e6). So I get the message "No LSP plugin found" when trying to do a call hierarchy.
I found a quick workaround to be able to use call hierarchies again:
diff --git a/autoload/ccls/lsp.vim b/autoload/ccls/lsp.vim
index ff8d7c6..3a7b31c 100644
--- a/autoload/ccls/lsp.vim
+++ b/autoload/ccls/lsp.vim
@@ -95,7 +95,7 @@ function! ccls#lsp#request(bufnr, method, params, handler) abort
catch
call ccls#util#warning('LSP error')
endtry
" Use nvim-lsp
let l:call_id = ccls#lsp#nvim_lsp#register(a:handler)
let l:args = [a:bufnr, a:method, a:params, l:call_id]
The text was updated successfully, but these errors were encountered: