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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 0 deletions

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 = {