-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Description
Every time you navigate with 'l' key through code, the cursor will not move for a second because Nvim thinks you're trying to use LSP key binding.
local opts = { buffer = ev.buf }
vim.keymap.set('n', 'lD', vim.lsp.buf.declaration, opts)
vim.keymap.set('n', 'ld', vim.lsp.buf.definition, opts)
vim.keymap.set('n', 'lk', vim.lsp.buf.hover, opts)
vim.keymap.set('n', 'i', vim.lsp.buf.implementation, opts)
vim.keymap.set('n', '<C-k>', vim.lsp.buf.signature_help, opts)No good, very icky.
kuprTheMan
Metadata
Metadata
Assignees
Labels
No labels