红联Linux门户
Linux帮助

ubuntu 15.10下vim树形目录插件NERDTree安装

发布时间:2016-01-04 15:31:55来源:91duofanli.com作者:linux人

wget http://www.vim.org/scripts/download_script.php?src_id=17123 -O nerdtree.zip
unzip nerdtree.zip

mkdir -p ~/.vim/{plugin,doc}

cp plugin/NERD_tree.vim ~/.vim/plugin/
cp doc/NERD_tree.txt ~/.vim/doc/


安装好后,命令行中输入vim,打开vim后,在vim中输入:NERDTree,你就可以看到NERDTree的效果了。

为了方便起见,我们设置一下快捷键,在~/.vimrc 文件中添加下面内容:


" NERDTree
map <F10> :NERDTreeToggle<CR>


这样打开vim后,只要按键盘上的F10就可以显示和隐藏NERDTree的文件浏览了。


运行效果如图:

ubuntu 15.10下vim树形目录插件NERDTree安装


Ubuntu14.04配置ctags+vim查看源码:http://www.linuxdiyf.com/linux/16621.html

Ubuntu下代码查看小妙招-vim ctags cscope的简单用法:http://www.linuxdiyf.com/linux/3060.html

Vim集成Ctags和Taglist:http://www.linuxdiyf.com/linux/2818.html

Ubuntu下创建Vim+Taglist+Cscope+Ctags组合编辑器:http://www.linuxdiyf.com/linux/1807.html

一起来说Vim语:http://www.linuxdiyf.com/linux/15908.html