-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.ideavimrc
More file actions
executable file
·37 lines (36 loc) · 1.14 KB
/
.ideavimrc
File metadata and controls
executable file
·37 lines (36 loc) · 1.14 KB
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
set relativenumber
set number
set ignorecase
set smartcase
set hls
set incsearch
set surround
set commentary
let mapleader = ","
map <leader>r :action Run<CR>
map <leader>d :action Debug<CR>
map <leader>R :action RunClass<CR>
map <leader>D :action DebugClass<CR>
map <leader>O :action OverrideMethods<CR>
map <leader>o :action OptimizeImports<CR>
map <leader>b :action GotoDeclaration<CR>
map <leader>k :action CheckinProject<CR>
map <leader>K :action Vcs.Push<CR>
map <leader>t :action Vcs.UpdateProject<CR>
map <leader>gp :action Github.Create.Pull.Request<CR>
map <leader>s :action Android.SyncProject<CR>
map <leader>l :action ReformatCode<CR>
map <leader>e :action GotoNextError<CR>
map <leader>u :action FindUsages<CR>
map <leader>ca :action OpenCurrentActivity.Open<CR>
map <leader>B :action ToggleLineBreakpoint<CR>
map <leader>gr :action ChangesView.Revert<CR>
map <leader>q :action CloseAllEditorsButActive<CR>
map <C-h> <C-w><h>
map <C-l> <C-w><l>
map <C-j> <C-w><j>
map <C-k> <C-w><k>
map <leader>gb :action Git.Branches<CR>
map <leader>gs :action Git.Stash<CR>
map <leader>gu :action Git.Unstash<CR>
map <leader>a :action AndroidConnectDebuggerAction<CR>