为什么需要“来源”一些 Vim 插件?
来自 autotag.vim:
安装详细信息
简单地获取文件 .vimrc 文件中的 autoTag.vim。 这个实用程序(显然)只会 使用 vim 时可以工作 使用 python 支持编译。
是否需要这个,因为这是 vim 中的 Python 插件,而不是 vim 脚本? .vim/plugin
中的插件不是自动加载的吗?
该插件仅在我获取它时才有效。由于我使用的是 病原体,因此会出现此行为吗?
From autotag.vim:
install details
Simply source the file
autoTag.vim from your .vimrc file.
This utility will (obviously) only
work when using vim that's been
compiled with python support.
Is this needed because this is a Python plugin in vim, instead of a vimscript? Aren't plugins in .vim/plugin
loaded automatically?
This plugin only works when I source it. Is this behavior expected because I'm using pathogen?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有什么区别:如果你把它放在
.vim/plugin
中,你不需要从其他地方获取它。附录
正如 Randy Morris 在评论中解释的那样,凭借
pathogen.vim
的魔力,放置脚本的等效插件路径实际上是.vim/bundle/autotag/plugin
。There is no difference: if you place it in
.vim/plugin
, you don't need to source it from somewhere else.Addendum
As Randy Morris explains in the comments, with
pathogen.vim
's magic, the equivalent plugin path to put the script in would actually be.vim/bundle/autotag/plugin
.