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 + Pathogen 的解决方案,但不会加载您仅filetype off在调用病原体感染之前添加的帮助文档,并且您仍然无法生成帮助标签,那么此提示可能会对您有所帮助。
filetype off
Pathogen 正在搜索下的 bundle 文件夹~/.vim/bundle,并为每个 doc 文件夹生成帮助标签,~您的运行时路径在哪里。在 Windows 上,vim 的默认运行时路径会~/Vim/vim73以某种方式混淆 Pathogen,如果您将运行时路径更改为上一个文件夹,~/Vim一切都会修复!
~/.vim/bundle
~
~/Vim/vim73
~/Vim
Vim 中的运行时路径变量使用以下命令更改:
:let $VIMRUNTIME = "puth_path_here/Vim"
在 Vim 中输入 :h $VIMRUNTIME 以获得更详细的解释。