在 Windows 上安装 NERDTree
我正在尝试在 Windows 7 上安装 NERDTree(Vim 插件)。我在我的用户文件夹 (C:/Users/Username) 上创建了一个 .vim 目录,并在那里提取了插件。我已经运行 :helptags ~.vim\doc 和 :helptags [完整路径]。关闭并重新打开 Vim。
但是当我尝试时:
:NERDTree
编辑说:
E492: Not an editor command: NERDTree
我该怎么做?
I'm trying to install NERDTree (the Vim plugin) on Windows 7. I created a .vim directory on my user folder (C:/Users/Username) and extracted the plugin there. I've run :helptags ~.vim\doc and :helptags [full-path]. Closed and reopened Vim.
But when I try:
:NERDTree
the editor says:
E492: Not an editor command: NERDTree
How should I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Windows 不使用“.vim”样式目录。相反,您应该将插件放在从 vimfiles 目录分支的两个位置之一的目录结构中:
c:\users\username\vimfiles\
或
c:\program files (x86)\vim\vimfiles\
如需更多帮助,您可以这样做
:h 运行时路径
,您甚至可以修改运行时路径以使其与您的 .vim 目录一起使用,但最安全的方法是使用 Windows 上的默认 vim 文件名称。Windows doesn't use the '.vim' style directories. Instead you should put addons in directory structure branching off a vimfiles directory at one of two places:
c:\users\username\vimfiles\
or
c:\program files (x86)\vim\vimfiles\
For a little more help you can do
:h runtimepath
, and you could even modify runtimepath to make it work with your .vim directory, but safest route is just to go with the default vimfiles name oon Windows.尝试将文件提取到 vimfiles 而不是 .vim
try extracting the file to vimfiles instead of .vim
其他答案都不适合我,所以我执行了以下操作:
C:\Program
Files\Vim\vimXX\doc
C:\Program Files\Vim\vimXX\
复制到
C:\Program Files (x86)\Vim\vimXX\plugin\
其中 XX 是你的 vim 版本号。适用于 7.4
源 http://shawn.hamman.co.nz/
None of the other answers worked for me, so I did the following:
C:\Program
Files\Vim\vimXX\doc
C:\Program Files\Vim\vimXX\
copied to
C:\Program Files (x86)\Vim\vimXX\plugin\
Where XX is your vim version number. Works for 7.4
Source http://shawn.hamman.co.nz/