From 94a4b4a4830c4d1b414eca813bb063772b789d58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Thu, 19 Dec 2024 10:27:31 +0100 Subject: [PATCH] feat(ideavim): add next/prev problem mappings --- modules/programs/jetbrains/ideavimrc | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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)