-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvimrc.idea
More file actions
18 lines (17 loc) · 720 Bytes
/
Copy pathvimrc.idea
File metadata and controls
18 lines (17 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
set surround
nnoremap <Tab> :action VimMotionNextTab<CR>
nnoremap <S-Tab> :action GotoRelated<CR>
nnoremap [c :action VcsShowPrevChangeMarker<CR>
nnoremap ]c :action VcsShowNextChangeMarker<CR>
nnoremap ]e :action GotoNextError<CR>
nnoremap [e :action GotoPreviousError<CR>
nnoremap <leader>q :action CloseEditor<CR>
nnoremap <leader>n :action NewFile<CR>
nnoremap <leader>v :action ToggleDistractionFreeMode<CR>
nnoremap <leader>p :action SearchEverywhere<CR>
nnoremap <leader>i :action InspectCode<CR>
nnoremap <leader>f :action ShowUsages<CR>
nnoremap <leader>s :action AceAction<CR>
nnoremap <C-\>g :action GotoDeclaration<CR>
nnoremap <C-\>s :action GotoImplementation<CR>
nnoremap <C-n> :action RenameElement<CR>