feat(nvim, vscode): Add ga for quickfix

This commit is contained in:
js0ny 2025-03-05 13:57:16 +00:00
parent 8f452172a5
commit 85ac355294
2 changed files with 3 additions and 0 deletions

View file

@ -4,6 +4,8 @@ local M = {
{ keys = "gD", cmd = vim.lsp.buf.declaration, opts = { desc = "Goto Declaration" } },
{ keys = "gr", cmd = vim.lsp.buf.references, opts = { desc = "Goto References" } },
{ keys = "gi", cmd = vim.lsp.buf.implementation, opts = { desc = "Goto Implementation" } },
{ keys = "<leader>,", cmd = vim.lsp.buf.code_action, opts = { desc = "Code Action" } },
{ keys = "ga", cmd = vim.lsp.buf.code_action, opts = { desc = "Code Action" } },
}
return M