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.
1 parent cf29b34 commit 039058bCopy full SHA for 039058b
lua/keymaps.lua
@@ -7,6 +7,8 @@ vim.keymap.set('n', '<Esc>', '<cmd>nohlsearch<CR>')
7
8
-- Diagnostic keymaps
9
vim.keymap.set('n', '<leader>q', vim.diagnostic.setloclist, { desc = 'Open diagnostic [Q]uickfix list' })
10
+vim.keymap.set('n', '<leader>[', '<cmd>cprev<CR>', { desc = 'Jump to next quickfix item' })
11
+vim.keymap.set('n', '<leader>]', '<cmd>cnext<CR>', { desc = 'Jump to previous quickfix item' })
12
13
-- Exit terminal mode in the builtin terminal with a shortcut that is a bit easier
14
-- for people to discover. Otherwise, you normally need to press <C-\><C-n>, which
0 commit comments