disable some semi-duplicated / extremely similar keymaps
This commit is contained in:
parent
2a4ab0d507
commit
e57d86d6e2
|
@ -6,7 +6,8 @@
|
||||||
vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>')
|
vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>')
|
||||||
|
|
||||||
-- Diagnostic keymaps
|
-- Diagnostic keymaps
|
||||||
vim.keymap.set('n', '<leader>q', vim.diagnostic.setloclist, { desc = 'Open diagnostic [Q]uickfix list' })
|
-- NOTE: disabled: use Trouble keybindings instead
|
||||||
|
-- vim.keymap.set('n', '<leader>q', vim.diagnostic.setloclist, { desc = 'Open diagnostic [Q]uickfix list' })
|
||||||
|
|
||||||
-- Exit terminal mode in the builtin terminal with a shortcut that is a bit easier
|
-- Exit terminal mode in the builtin terminal with a shortcut that is a bit easier
|
||||||
-- for people to discover. Otherwise, you normally need to press <C-\><C-n>, which
|
-- for people to discover. Otherwise, you normally need to press <C-\><C-n>, which
|
||||||
|
|
|
@ -14,7 +14,8 @@ return {
|
||||||
group = vim.api.nvim_create_augroup('kickstart-termopen-setkeymaps', { clear = true }),
|
group = vim.api.nvim_create_augroup('kickstart-termopen-setkeymaps', { clear = true }),
|
||||||
callback = function()
|
callback = function()
|
||||||
local opts = { buffer = 0 }
|
local opts = { buffer = 0 }
|
||||||
vim.keymap.set('t', '<esc>', [[<C-\><C-n>]], opts) -- <Esc> to exit out of "Terminal" mode
|
-- NOTE: disabled: keymaps.lua has another similar global keybinding for this for all terminals
|
||||||
|
-- vim.keymap.set('t', '<esc>', [[<C-\><C-n>]], opts) -- <Esc> to exit out of "Terminal" mode
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
|
|
Loading…
Reference in a new issue