.vimrc 文件不适用
当我启动 vim
时,.vimrc
文件中的一些设置不会应用。 我认识到它,例如因为折叠快捷方式不起作用(za
,zM
)。 我必须运行命令
:source $MYVIMRC
这会有所帮助,但每次启动 vim 时运行此命令会很不舒服,而且之前没有此命令时它可以工作。
我正在使用 Xubuntu 10.04。它位于 ~/.vimrc
中。在 :source $MYVIMRC
命令之后一切正常。也许是当我向 vimrc
au 添加行时开始的! BufWritePost .vimrc source %
my .vimrc
应用了一些文件并有些我必须手动申请。
谢谢
When I start vim
some of the settings from .vimrc
file are not applied.
I recognized it e.g. because shortcuts for folding don't work (za
, zM
).
I have to run the command
:source $MYVIMRC
and this helps but it's uncomfortable to run this command every time I start vim and this was working before without this command.
I'm using Xubuntu 10.04. It's in ~/.vimrc
. Everything works after the :source $MYVIMRC
command. Maybe it started when I added line to vimrc
au! BufWritePost .vimrc source %
my .vimrc
Some files are applied and some I have to manually apply.
thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅供参考,
我尝试过
但是,这就像一个魅力和 QQ 的映射就像它应该的那样。所以还会有另一个罪魁祸首
(这是在 Ubuntu 10.10、gvim 7.2 上)如果你真的想调试 Thins,请使用
-V
标志启动 gvim:或
HTH
FYI
I tried with
However, this works like a charm and QQ is mapped just like it should. So there will be another culprit involved
(this is on Ubuntu 10.10, gvim 7.2) If you really want to debug thins, start gvim with the
-V
flag:or
HTH