Is there a way to teach vim to switch usage of y and z? So for example yy would save a file, ya would toggle etc.. This would be much more usable with my German keyboard layout. What other technique could I use to cope with the problem of "dislocating" my fingers when using vim?

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted
:noremap y z
:noremap z y
:noremap! y z
:noremap! z y

:lnoremap might be necessary instead of :noremap! ... See :help :map and :help mapmode-l.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.