Skip to content

Commit

Permalink
Change conflicting mapping <C-k> in LSP configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
miltonllera committed Dec 16, 2021
1 parent b358c9d commit b918eb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lsp/utils.lua
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function M.common_on_attach(client, bufnr)
bufnnoremap("K", "<Cmd>lua vim.lsp.buf.hover()<CR>")

-- Signature help
bufnnoremap("<C-k>", "<Cmd>lua vim.lsp.buf.signature_help()<CR>")
bufnnoremap("<A-k>", "<Cmd>lua vim.lsp.buf.signature_help()<CR>")

-- Rename all references of symbol
bufnnoremap("<leader>R", "<Cmd>lua vim.lsp.buf.rename()<CR>")
Expand Down

0 comments on commit b918eb6

Please sign in to comment.