diff --git a/modules/programs/jetbrains/ideavimrc b/modules/programs/jetbrains/ideavimrc index da67110..85e2f31 100644 --- a/modules/programs/jetbrains/ideavimrc +++ b/modules/programs/jetbrains/ideavimrc @@ -46,10 +46,15 @@ let g:WhichKeyDesc_rename = 'r Rename' map r (RenameElement) "" Navigation -let g:WhichKeyDesc_prev_buffer = ']b Previous buffer' +let g:WhichKeyDesc_prev_buffer = '[b Previous buffer' map [b (PreviousTab) let g:WhichKeyDesc_next_buffer = ']b Next buffer' map ]b (NextTab) +let g:WhichKeyDesc_prev_problem = '[x Previous problem' +map [x (PreviousOccurence) +let g:WhichKeyDesc_next_problem = ']x Next problem' +map ]x (NextOccurence) + let g:WhichKeyDesc_goto_impl = 'gI Goto implementation' map gI (GotoImplementation)