feat(ideavim): add next/prev problem mappings

This commit is contained in:
Moritz Böhme 2024-12-19 10:27:31 +01:00
parent 3cfdb9f592
commit 94a4b4a483

View file

@ -46,10 +46,15 @@ let g:WhichKeyDesc_rename = '<leader>r Rename'
map <leader>r <Action>(RenameElement) map <leader>r <Action>(RenameElement)
"" Navigation "" Navigation
let g:WhichKeyDesc_prev_buffer = ']b Previous buffer' let g:WhichKeyDesc_prev_buffer = '[b Previous buffer'
map [b <Action>(PreviousTab) map [b <Action>(PreviousTab)
let g:WhichKeyDesc_next_buffer = ']b Next buffer' let g:WhichKeyDesc_next_buffer = ']b Next buffer'
map ]b <Action>(NextTab) map ]b <Action>(NextTab)
let g:WhichKeyDesc_prev_problem = '[x Previous problem'
map [x <Action>(PreviousOccurence)
let g:WhichKeyDesc_next_problem = ']x Next problem'
map ]x <Action>(NextOccurence)
let g:WhichKeyDesc_goto_impl = 'gI Goto implementation' let g:WhichKeyDesc_goto_impl = 'gI Goto implementation'
map gI <Action>(GotoImplementation) map gI <Action>(GotoImplementation)