@@ -79,11 +79,6 @@ nnoremap v<Leader>ge v]b
79
79
" nnoremap ci<Leader>w di[w
80
80
81
81
82
- " vim-unimpaired
83
- nnoremap ]q :action GotoNextError<cr>
84
- nnoremap [q :action GotoPreviousError<cr>
85
-
86
-
87
82
""""""""""""""""""""
88
83
""" IDEA setings """
89
84
""""""""""""""""""""
@@ -142,7 +137,7 @@ nnoremap gi :action GotoImplementation<cr>
142
137
nnoremap gp :action GotoSuperMethod<cr>
143
138
nnoremap gr :action GotoRelated<cr>
144
139
nnoremap gs :action GotoSymbol<cr>
145
- nnoremap gt :action GotoTest<cr>
140
+ nnoremap gpt :action GotoTest<cr>
146
141
nnoremap gh :action TypeHierarchy<cr>
147
142
nnoremap gm :action FileStructurePopup<cr>
148
143
@@ -156,26 +151,45 @@ nnoremap <Leader>ff :action GotoFile<cr>
156
151
nnoremap <Leader>fc :action GotoClass<cr>
157
152
nnoremap <Leader>fo :action RecentFiles<cr>
158
153
" opens current file in NerdTree
159
- nnoremap <Leader>T :NERDTreeFind<cr>
154
+ nnoremap - :NERDTreeFind<cr>
160
155
nnoremap <C-n> :NERDTreeToggle<cr>
161
156
157
+ " windows
158
+ nnoremap <Leader>/ :vsp<CR>
159
+ nnoremap <Leader>- :sp<CR>
160
+ nnoremap <C-Left> <C-w>h
161
+ nnoremap <C-Right> <C-w>l
162
+ nnoremap <C-Up> <C-w>k
163
+ nnoremap <C-Down> <C-w>j
164
+
162
165
" Runing stuff
163
- nnoremap <Leader>r :action Run<cr>
164
- nnoremap <Leader>R :action ContextRun<cr>
165
- nnoremap <Leader>d :action Debug<cr>
166
- nnoremap <Leader>D :action ContextDebug<cr>
167
- nnoremap <Leader>c :action RunClass<cr>
168
- nnoremap <Leader>C :action DebugClass<cr>
169
- " nnoremap <Leader>f :action RerunFailedTests<cr>
166
+ nnoremap <Leader>rr :action Run<cr>
167
+ nnoremap <Leader>rn :action ContextRun<cr>
168
+ nnoremap <Leader>rf :action RunClass<cr>
170
169
map <C-p> <Action>(RebuildProject)
171
- map <C-s> <Action>(Stop)
170
+ map <Leader>R <Action>(Stop)
171
+
172
172
" TODO?
173
173
" nnoremap <Leader>rt :action ActivateRunToolWindow<cr>
174
174
" nnoremap ,l :action ChooseRunConfiguration<cr>
175
+ " nnoremap <Leader>rd :action Debug<cr>
176
+ " nnoremap <Leader>D :action ContextDebug<cr>
177
+ " nnoremap <Leader>C :action DebugClass<cr>
178
+ " nnoremap <Leader>f :action RerunFailedTests<cr>
175
179
176
180
" Debugging
177
- nnoremap <Leader>db :action ToggleLineBreakpoint<cr>
178
- nnoremap <Leader>dB :action EditBreakpoint<cr>
181
+ nnoremap <Leader>rb :action ToggleLineBreakpoint<cr>
182
+ nnoremap <Leader>rB :action EditBreakpoint<cr>
179
183
180
184
" Git Integration
181
- nnoremap <Leader>vb :action Annotate<cr>
185
+ nnoremap <Leader>gb :action Annotate<cr>
186
+ nnoremap ]g :action VcsShowNextChangeMarker<cr>
187
+ nnoremap [g :action VcsShowPrevChangeMarker<cr>
188
+
189
+ " Code Actions
190
+ nnoremap crr :action ShowIntentionActions<cr>
191
+ nnoremap crf :action ReformatCode<cr>
192
+ nnoremap crn :action RenameElement<cr>
193
+ nnoremap ]d :action GotoNextError<cr>
194
+ nnoremap [d :action GotoPreviousError<cr>
195
+
0 commit comments