-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnext.vim
29 lines (21 loc) · 936 Bytes
/
next.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
""""""""
" Next "
""""""""
" Next actions - prefixed by the right square bracket ]
let g:WhichKeyDesc_next = "] +Next"
let g:WhichKeyDesc_next_word_at_caret = "]] Word at Caret"
map ]] <Action>(FindWordAtCaret)
let g:WhichKeyDesc_next_error = "]e Error"
map ]e <Action>(GotoNextError)
let g:WhichKeyDesc_next_tab = "]t Tab"
map ]t <Action>(NextTab)
let g:WhichKeyDesc_next_split = "]s Split"
map ]s <Action>(NextSplitter)
let g:WhichKeyDesc_next_method = "]m Method"
map ]m <Action>(MethodDown)
let g:WhichKeyDesc_next_bookmark = "]b Bookmark"
map ]b <Action>(GotoNextBookmark)
let g:WhichKeyDesc_next_bookmark_in_current_file = "]B Bookmark in CURRENT File"
map ]B <Action>(GotoNextBookmarkInEditor)
let g:WhichKeyDesc_next_project_window = "]p Project Window"
map ]p <Action>(NextWindow)