mcilvena
mcilvena
DDeno
Created by Joseph Crawford on 10/2/2024 in #help
Denols Neovim
If you're using LazyVim, it should be configured this way by default: https://github.com/LazyVim/LazyVim/blob/cb40a09538dc0c417a7ffbbacdbdec90be4a792c/lua/lazyvim/plugins/lsp/keymaps.lua#L17. Maybe check that you haven't configured it differently somewhere else, such as where the which-key plugin is setup.
18 replies
DDeno
Created by Joseph Crawford on 10/2/2024 in #help
Denols Neovim
I don't know if you figured this out but I fixed/avoided it by changing my keymaps to avoid using Telescope:
--map('gd', require('telescope.builtin').lsp_definitions, '[G]oto [D]efinition')
map('gd', vim.lsp.buf.definition, '[G]oto [D]efinition')
--map('gd', require('telescope.builtin').lsp_definitions, '[G]oto [D]efinition')
map('gd', vim.lsp.buf.definition, '[G]oto [D]efinition')
18 replies