I use horizontal and vertical window splits in religiously in VIM and up until recently, I enjoyed the comfort of two commands to effectively hide (or minimize) my horizontal sp
First up, you won't be able to use
set winminwidth=0
nmap h500>
nmap l500>
The common leader keys in vim are comma and back-slash:
:let mapleader = ","
But you'll find that this gets annoying to require 3 keystrokes for this, so you might as well just drop the control key stroke. This way (if your leader is comma) you can just press ",h" and ",l" to go to the splits to your left and right:
set winminwidth=0
nmap h h500>
nmap l l500>
" (FTW) :D
...
A guy named Tony Chapman answers why you can't use control + shift:
Vim maps its
Ctrl+printable_key
combinations according to ASCII. This means that "Ctrl+lowercase letter
" is the same as the corresponding "Ctrl+uppercase letter
" and thatCtrl+
(whereis a printable key) is only defined when
is in the range 0x40-0x5F, a lowercase letter, or a question mark. It also means that
Ctrl-[
is the same asEsc
,Ctrl-M
is the same asEnter
,Ctrl-I
is the same asTab
.So yes,
Ctrl-s
andCtrl-S
(i.e.Ctrl-s
andCtrl-Shift-s
) are the same to Vim. This is by design and is not going to change.