feat(lsp): add visual mode code actions (#2353)
This commit is contained in:
parent
a9bc954d02
commit
a69e8dc591
|
@ -240,6 +240,15 @@ M.lspconfig = {
|
||||||
"List workspace folders",
|
"List workspace folders",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
v = {
|
||||||
|
["<leader>ca"] = {
|
||||||
|
function()
|
||||||
|
vim.lsp.buf.code_action()
|
||||||
|
end,
|
||||||
|
"LSP code action",
|
||||||
|
},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
M.nvimtree = {
|
M.nvimtree = {
|
||||||
|
|
Loading…
Reference in New Issue