本文介绍了在vim中将:Wq重新映射到:wq的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
很多时候,当我想在vim中保存文件并随后立即退出时,我不小心输入了:Wq而不是:wq.
A lot of times, when I want to save a file in vim and immediately exit thereafter, I accidentally type :Wq instead of :wq.
Vim自然会给我这个错误:
Vim naturally gives me this error:
E492: Not an editor command: Wq
我想知道,是否可以将:Wq重新映射到:wq?
I'm wondering, is it possible to remap :Wq to :wq?
推荐答案
您可以创建一个简单的vim命令,该命令基本上是 wq
的别名.将以下内容放入您的〜/.vimrc
文件中:
You can create a simple vim command that is basically an alias for wq
. Place the following in your ~/.vimrc
file:
command! Wq wq
有关更多帮助,请参见:
For more help see:
:h :command
这篇关于在vim中将:Wq重新映射到:wq的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!