Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 .vim/autoload 中有病原体,在我的 .vim/bundles 目录中有 nerdtree。我也有
filetype off call pathogen#helptags() call pathogen#runtime_append_all_bundles() filetype plugin indent on
在我的 .vimrc 文件中
不管出于什么原因,当我运行 vim 时,NERDTree 没有运行。
有什么建议么
NERDTree 真的在里面.vim/bundles吗?它应该在.vim/bundle.
.vim/bundles
.vim/bundle
另外,请注意,您应该将行放在行call pathogen#helptags()之后,call pathogen#runtime_append_all_bundles()否则将无法正确生成标签。我不知道为什么这么多关于病原体的博文反过来说。
call pathogen#helptags()
call pathogen#runtime_append_all_bundles()