We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3b3bdab + 182afa3 commit fc79e6eCopy full SHA for fc79e6e
.vimrc
@@ -200,10 +200,16 @@
200
endif
201
202
" Easier moving in tabs and windows
203
- map <C-J> <C-W>j<C-W>_
204
- map <C-K> <C-W>k<C-W>_
205
- map <C-L> <C-W>l<C-W>_
206
- map <C-H> <C-W>h<C-W>_
+ " The lines conflict with the default digraph mapping of <C-K>
+ " If you prefer that functionality, add let g:spf13_no_easyWindows = 1
+ " in your .vimrc.bundles.local file
+
207
+ if !exists('g:spf13_no_easyWindows')
208
+ map <C-J> <C-W>j<C-W>_
209
+ map <C-K> <C-W>k<C-W>_
210
+ map <C-L> <C-W>l<C-W>_
211
+ map <C-H> <C-W>h<C-W>_
212
+ endif
213
214
" Wrapped lines goes down/up to next row, rather than next line in file.
215
nnoremap j gj
0 commit comments