I'm trying to make Vim wait after the leader key indefinitely without messing with the timeoutlen of other keys.
Currently I have this lines in my vimrc:
let mapleader=" "
set timeoutlen=2000 ttimeoutlen=0
Setting ttimeoutlen make commands such as ciw last permanently.
The Spacemacs plugin for Emacs which has a nice set of default configurations, one of these is that the leader key waits indefinitely. Can I do this on Vim by any other way than changing the timeoutlen values?
:h 'timout'help you? – Christian Brabandt Jan 08 '16 at 19:05