nvim: fix deprecated
This commit is contained in:
parent
a003050383
commit
b9c5761765
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ local function on_attach(args)
|
|||
vim.keymap.set('n', '<space>D', vim.lsp.buf.type_definition, opts)
|
||||
vim.keymap.set('n', '<space>rn', vim.lsp.buf.rename, opts)
|
||||
vim.keymap.set('n', '<space>ca', vim.lsp.buf.code_action, opts)
|
||||
vim.keymap.set('v', '<space>ca', vim.lsp.buf.range_code_action, opts)
|
||||
vim.keymap.set('v', '<space>ca', vim.lsp.buf.code_action, opts)
|
||||
vim.keymap.set('n', 'gr', vim.lsp.buf.references, opts)
|
||||
vim.keymap.set('n', '[d', vim.diagnostic.goto_prev, opts)
|
||||
vim.keymap.set('n', ']d', vim.diagnostic.goto_next, opts)
|
||||
|
|
Loading…
Add table
Reference in a new issue