-
Notifications
You must be signed in to change notification settings - Fork 0
/
ideavimrc
40 lines (30 loc) · 1.42 KB
/
ideavimrc
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
31
32
33
34
35
36
37
38
39
40
################################################################################
# Basics
################################################################################
# source ~/.vimrc
" Remap multiple-cursors shortcuts to match terryma/vim-multiple-cursors
nmap <C-n> <Plug>NextWholeOccurrence
xmap <C-n> <Plug>NextWholeOccurrence
nmap g<C-n> <Plug>NextOccurrence
xmap g<C-n> <Plug>NextOccurrence
nmap <C-x> <Plug>SkipOccurrence
xmap <C-x> <Plug>SkipOccurrence
nmap <C-p> <Plug>RemoveOccurrence
xmap <C-p> <Plug>RemoveOccurrence
################################################################################
# Navigate source code
################################################################################
nnoremap [[ :action MethodUp<CR>
nnoremap ]] :action MethodDown<CR>
nnoremap zc :action CollapseRegion<CR>
nnoremap zo :action ExpandRegion<CR>
nnoremap <S-Space> :action GotoNextError<CR>
nnoremap <leader>f :action FileStructurePopup<CR>
################################################################################
# Editing source code
################################################################################
nnoremap <leader>r :action Refactorings.QuickListPopupAction<CR>
################################################################################
# Navigating IDEA
################################################################################
nnoremap <leader>t :action ActivateTerminalToolWindow<CR>