vote up 2 vote down star

I love vim and the speed it gives me. But sometimes, my fingers are too speedy and I find myself typing ":WQ" instead of ":wq" (on a German keyboard, you have to press shift to get the colon). Vim will then complain that 'W' is not an editor command.

Is there some way to make W and Q editor commands?

flag

You use shift to get a colon on a standard American QWERTY too. – William Keller Sep 22 '08 at 19:58

2 Answers

vote up 4 vote down check

Try

 :command WQ wq
 :command Wq wq
 :command W w
 :command Q q

This way you can define your own commands. See :help command for more information.

link|flag
don't forget to add the above to your vimrc so you don't have to do it every time. – rampion Sep 22 '08 at 22:43
vote up 0 vote down

And you can use

:cmap WQ wq

as well. E.g. I have

cmap h tab help

in my .vimrc which means opening help pages in a new tab.

link|flag

Your Answer

Get an OpenID
or

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