mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 12:50:04 +08:00
fix(lsp): fix lsp command setting
This commit is contained in:
parent
f8dc9c33a7
commit
cd99fa7242
@ -91,19 +91,19 @@ end
|
||||
|
||||
-- Use a loop to conveniently call 'setup' on multiple servers and
|
||||
-- map buffer local keybindings when the language server attaches
|
||||
local override_client_cmds = require('spacevim').eval('s:override_client_cmds')
|
||||
for client, override_cmd in pairs(override_client_cmds) do
|
||||
nvim_lsp[client].setup {
|
||||
cmd = override_cmd,
|
||||
local servers = require('spacevim').eval('s:enabled_clients')
|
||||
for _, lsp in ipairs(servers) do
|
||||
nvim_lsp[lsp].setup {
|
||||
on_attach = on_attach,
|
||||
flags = {
|
||||
debounce_text_changes = 150,
|
||||
}
|
||||
}
|
||||
end
|
||||
local servers = require('spacevim').eval('s:enabled_clients')
|
||||
for _, lsp in ipairs(servers) do
|
||||
nvim_lsp[lsp].setup {
|
||||
local override_client_cmds = require('spacevim').eval('s:override_client_cmds')
|
||||
for client, override_cmd in pairs(override_client_cmds) do
|
||||
nvim_lsp[client].setup {
|
||||
cmd = override_cmd,
|
||||
on_attach = on_attach,
|
||||
flags = {
|
||||
debounce_text_changes = 150,
|
||||
|
Loading…
Reference in New Issue
Block a user