feat(ideavim): add next/prev problem mappings
This commit is contained in:
parent
3cfdb9f592
commit
94a4b4a483
1 changed files with 6 additions and 1 deletions
|
@ -46,10 +46,15 @@ let g:WhichKeyDesc_rename = '<leader>r Rename'
|
|||
map <leader>r <Action>(RenameElement)
|
||||
|
||||
"" Navigation
|
||||
let g:WhichKeyDesc_prev_buffer = ']b Previous buffer'
|
||||
let g:WhichKeyDesc_prev_buffer = '[b Previous buffer'
|
||||
map [b <Action>(PreviousTab)
|
||||
let g:WhichKeyDesc_next_buffer = ']b Next buffer'
|
||||
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'
|
||||
map gI <Action>(GotoImplementation)
|
||||
|
|
Loading…
Reference in a new issue