We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in neovim v0.11.0 a list of default ksp key mappings is added neovim/neovim#28650. this will interfere with the mappings in this repo, in particular: https://github.com/nvim-lua/kickstart.nvim/blob/master/init.lua#L541.
since im already used to using the telescope's lsp commands, i ended up disabled all the newly introduced lsp mappings:
vim.keymap.del('n', 'grn') vim.keymap.del('n', 'grr') vim.keymap.del('n', 'gri') vim.keymap.del('n', 'gra')
but im wondering if there is a better way of doing this?
The text was updated successfully, but these errors were encountered:
Thnx, I already wondering why there was a slowdown in showing some Telescope LSP mappings.
Sorry, something went wrong.
I made a PR (#1427) to change the LSP keybindings to match the new default keybindings in 0.11.
hate to press one more key to do the same thing. i guess using vim.keymap.del is the only way
vim.keymap.del
gr
Just merged the fix for this.
No branches or pull requests
in neovim v0.11.0 a list of default ksp key mappings is added neovim/neovim#28650. this will interfere with the mappings in this repo, in particular: https://github.com/nvim-lua/kickstart.nvim/blob/master/init.lua#L541.
since im already used to using the telescope's lsp commands, i ended up disabled all the newly introduced lsp mappings:
but im wondering if there is a better way of doing this?
The text was updated successfully, but these errors were encountered: