document update

neovim_0.6
ray-x 3 years ago
parent 062e7e4ffc
commit 74ea1ddd73

@ -301,6 +301,8 @@ servers. (Prevent loading multiple LSP for same source code.) e.g. I saw strange
pylsp+pyright+jedi
together. If you have multiple similar LSP installed and have trouble with the plugin, please enable only one at a time.
Note: If you have multiple lsp installed for same language, please only enable one at a time by disable others with e.g. `disable_lsp={'denols', 'clangd'}`
### Disable a lsp client loading from navigator
To disable a specific LSP, set `filetypes` to {} e.g.

@ -235,7 +235,7 @@ function M.goto_adjacent_usage(bufnr, delta)
local opt = {forward = true}
-- log(delta)
if delta < 0 then
opt = {forward = false}
opt.forward = false
end
bufnr = bufnr or api.nvim_get_current_buf()
local node_at_point = ts_utils.get_node_at_cursor()

Loading…
Cancel
Save