-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathprevious.vim
30 lines (22 loc) · 1.03 KB
/
previous.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
30
""""""""""""
" Previous "
""""""""""""
" Previous actions - prefixed by the left square bracket [
let g:WhichKeyDesc_previous = "[ +Previous"
let g:WhichKeyDesc_previous_word_at_caret = "[[ Word at Caret"
map [[ <Action>(FindPrevWordAtCaret)
let g:WhichKeyDesc_previous_error = "[e Error"
map [e <Action>(GotoPreviousError)
let g:WhichKeyDesc_previous_tab = "[t Tab"
map [t <Action>(PreviousTab)
let g:WhichKeyDesc_previous_split = "[s Split"
map [s <Action>(PrevSplitter)
let g:WhichKeyDesc_previous_method = "[m Method"
map [m <Action>(MethodUp)
let g:WhichKeyDesc_previous_bookmark = "[b Bookmark"
map [b <Action>(GotoPreviousBookmark)
let g:WhichKeyDesc_previous_bookmark_in_current_file = "[B Bookmark in CURRENT File"
map [B <Action>(GotoPreviousBookmarkInEditor)
" Previous Project
let g:WhichKeyDesc_previous_project_window = "[p Previous Project"
map [p <Action>(PreviousProjectWindow)