mirror of
https://github.com/Baipyrus/nvim-config.git
synced 2024-11-12 20:23:50 +00:00
feat: added contexts for code action - source fix-all errors (#599)
* feat: added contexts for code action - source fix-all errors * fix: resolve stylua checks * fix: resolve stylua checks
This commit is contained in:
parent
c3ae716fb3
commit
bc4ad1218b
4
init.lua
4
init.lua
@ -514,7 +514,9 @@ local on_attach = function(_, bufnr)
|
||||
end
|
||||
|
||||
nmap('<leader>rn', vim.lsp.buf.rename, '[R]e[n]ame')
|
||||
nmap('<leader>ca', vim.lsp.buf.code_action, '[C]ode [A]ction')
|
||||
nmap('<leader>ca', function()
|
||||
vim.lsp.buf.code_action { context = { only = { 'quickfix', 'refactor', 'source' } } }
|
||||
end, '[C]ode [A]ction')
|
||||
|
||||
nmap('gd', require('telescope.builtin').lsp_definitions, '[G]oto [D]efinition')
|
||||
nmap('gr', require('telescope.builtin').lsp_references, '[G]oto [R]eferences')
|
||||
|
Loading…
Reference in New Issue
Block a user