病原体未加载书呆子树
我在 .vim/autoload 中有病原体,在 .vim/bundles 目录中有 nerdtree。 不管出于什么原因,我也进入
filetype off
call pathogen#helptags()
call pathogen#runtime_append_all_bundles()
filetype plugin indent on
了我的 .vimrc 文件
,当我运行 vim 时,NERDTree 不运行。
任何建议
I've got pathogen in .vim/autoload and i've got nerdtree within my .vim/bundles directory. I've also got
filetype off
call pathogen#helptags()
call pathogen#runtime_append_all_bundles()
filetype plugin indent on
in my .vimrc file
for whatever reason though, when i run vim, NERDTree doesn't run.
Any suggestions
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NERDTree 真的在
.vim/bundles
中吗?它应该位于.vim/bundle
中。另外,请注意,您应该将
callpathogen#helptags()
行放在callpathogen#runtime_append_all_bundles()
行之后,或者它不会正确生成标签。我不知道为什么这么多关于病原体的博文都用相反的方式。Is NERDTree really within
.vim/bundles
? It should be in.vim/bundle
.Also, note that you should put the
call pathogen#helptags()
line after thecall pathogen#runtime_append_all_bundles()
line, or it won't generate tags properly. I'm not sure why so many blogposts about pathogen have it the other way around.