feat(lsp): add visual mode code actions (#2353)

This commit is contained in:
camel_case
2023-09-02 14:30:02 +03:00
committed by GitHub
parent a9bc954d02
commit a69e8dc591

View File

@@ -240,6 +240,15 @@ M.lspconfig = {
"List workspace folders",
},
},
v = {
["<leader>ca"] = {
function()
vim.lsp.buf.code_action()
end,
"LSP code action",
},
},
}
M.nvimtree = {