1
0
Fork 0

nvim: lsp: shorter rename keymap

This commit is contained in:
tastytea 2022-08-13 19:27:53 +02:00
parent 673af86eaa
commit d6b2f4ff4c
Signed by: tastytea
SSH Key Fingerprint: SHA256:FBkvrOlhq5use1XEttyUGT4bUTDVA1ar9SgIc9P03cM
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ packer.use {
map('n', '<Leader>lwl', function()
print(vim.inspect(vim.lsp.buf.list_workspace_folders()))
end)
map('n', '<Leader>lrn', vim.lsp.buf.rename)
map('n', '<Leader>lr', vim.lsp.buf.rename)
map('n', '<Leader>la', vim.lsp.buf.code_action)
map('n', '<Leader>lf', vim.lsp.buf.formatting)