I use a Dvorak keyboard layout, and so I've made a few adjustments to the default VIM mappings-- one change I've made is to remap the right-side home row keys to
noremap d h
noremap h j
noremap t k
noremap n l
So that movement keys are conveniently positioned, as they would be for a QWERTY user. h
, t
, and n
do their job fine and are very responsive. d
, however, lags for a moment before moving left the way its supposed to. I think this is because there are key-sequence commands that start with d
(like dd
for delete line), so VIM is waiting to receive the second stroke in the sequence before executing the command for just a single 'd'. I've remapped dd
:
noremap dd hh
But this isn't doing the trick. Yet commands for things like d3w
or d$
(text objects after d
) aren't working (after remapping d
), so they couldn't be causing the issue. Anyone know how to get rid of the lag? BTW, even after disabling all plugins I have the same issues. I also have no other mappings with d
in my vimrc.