mirror of
1
0
Fork 0
ultimate-vim/sources_non_forked/nerdtree/README.markdown

146 lines
4.8 KiB
Markdown
Raw Normal View History

2020-01-07 07:45:07 -05:00
The NERDTree [![Vint](https://github.com/preservim/nerdtree/workflows/Vint/badge.svg)](https://github.com/preservim/nerdtree/actions?workflow=Vint)
2012-08-16 23:41:25 -04:00
=============
2017-09-02 06:43:18 -04:00
Introduction
------------
2012-08-16 23:41:25 -04:00
2017-09-02 06:43:18 -04:00
The NERDTree is a file system explorer for the Vim editor. Using this plugin,
users can visually browse complex directory hierarchies, quickly open files for
reading or editing, and perform basic file system operations.
2012-08-16 23:41:25 -04:00
2017-09-02 06:43:18 -04:00
This plugin can also be extended with custom mappings using a special API. The
details of this API and of other NERDTree features are described in the
included documentation.
2012-08-16 23:41:25 -04:00
2020-01-07 07:45:07 -05:00
![NERDTree Screenshot](https://github.com/preservim/nerdtree/raw/master/screenshot.png)
2012-08-16 23:41:25 -04:00
Installation
------------
2019-11-16 10:28:42 -05:00
Below are just some of the methods for installing NERDTree. Do not follow all of these instructions; just pick your favorite one. Other plugin managers exist, and NERDTree should install just fine with any of them.
2012-08-16 23:41:25 -04:00
2019-11-16 10:28:42 -05:00
#### Vim 8+ packages
2012-08-16 23:41:25 -04:00
2019-11-16 10:28:42 -05:00
If you are using VIM version 8 or higher you can use its built-in package management; see `:help packages` for more information. Just run these commands in your terminal:
2012-08-16 23:41:25 -04:00
2019-11-16 10:28:42 -05:00
```bash
2020-01-07 07:45:07 -05:00
git clone https://github.com/preservim/nerdtree.git ~/.vim/pack/vendor/start/nerdtree
2019-11-16 10:28:42 -05:00
vim -u NONE -c "helptags ~/.vim/pack/vendor/start/nerdtree/doc" -c q
```
2012-08-16 23:41:25 -04:00
2019-11-16 10:28:42 -05:00
Otherwise, these are some of the several 3rd-party plugin managers you can choose from. Be sure you read the instructions for your chosen plugin, as there typically are additional steps you nee d to take.
#### [pathogen.vim](https://github.com/tpope/vim-pathogen)
In the terminal,
```bash
2020-01-07 07:45:07 -05:00
git clone https://github.com/preservim/nerdtree.git ~/.vim/bundle/nerdtree
2019-11-16 10:28:42 -05:00
```
In your vimrc,
```vim
call pathogen#infect()
syntax on
filetype plugin indent on
```
Then reload vim, run `:helptags ~/.vim/bundle/nerdtree/doc/` or `:Helptags`.
#### [Vundle.vim](https://github.com/VundleVim/Vundle.vim)
```vim
call vundle#begin()
2020-01-07 07:45:07 -05:00
Plugin 'preservim/nerdtree'
2019-11-16 10:28:42 -05:00
call vundle#end()
```
#### [vim-plug](https://github.com/junegunn/vim-plug)
```vim
call plug#begin()
2020-01-07 07:45:07 -05:00
Plug 'preservim/nerdtree'
2019-11-16 10:28:42 -05:00
call plug#end()
```
2015-12-08 08:20:04 -05:00
2019-11-16 10:28:42 -05:00
#### [apt-vim](https://github.com/egalpin/apt-vim)
```bash
2020-01-07 07:45:07 -05:00
apt-vim install -y https://github.com/preservim/nerdtree.git
2019-11-16 10:28:42 -05:00
```
2015-12-08 08:20:04 -05:00
2020-01-07 07:45:07 -05:00
F.A.Q. (here, and in the [Wiki](https://github.com/preservim/nerdtree/wiki))
2017-09-02 06:43:18 -04:00
------
2012-08-16 23:41:25 -04:00
2019-11-16 10:28:42 -05:00
#### Is there any support for `git` flags?
2012-08-16 23:41:25 -04:00
2015-07-13 06:22:46 -04:00
Yes, install [nerdtree-git-plugin](https://github.com/Xuyuanp/nerdtree-git-plugin).
2012-08-16 23:41:25 -04:00
2016-05-14 07:57:54 -04:00
---
2019-11-16 10:28:42 -05:00
#### Can I have the nerdtree on every tab automatically?
2012-08-16 23:41:25 -04:00
2015-07-13 06:22:46 -04:00
Nope. If this is something you want then chances are you aren't using tabs and
buffers as they were intended to be used. Read this
http://stackoverflow.com/questions/102384/using-vims-tabs-like-buffers
2012-08-16 23:41:25 -04:00
2015-07-13 06:22:46 -04:00
If you are interested in this behaviour then consider [vim-nerdtree-tabs](https://github.com/jistr/vim-nerdtree-tabs)
2012-08-16 23:41:25 -04:00
2016-05-14 07:57:54 -04:00
---
2019-11-16 10:28:42 -05:00
#### How can I open a NERDTree automatically when vim starts up?
2014-07-02 07:18:18 -04:00
2015-07-13 06:22:46 -04:00
Stick this in your vimrc: `autocmd vimenter * NERDTree`
2012-08-16 23:41:25 -04:00
2016-05-14 07:57:54 -04:00
---
2019-11-16 10:28:42 -05:00
#### How can I open a NERDTree automatically when vim starts up if no files were specified?
2015-12-08 08:20:04 -05:00
Stick this in your vimrc:
2019-11-16 10:28:42 -05:00
```vim
autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
```
2015-12-08 08:20:04 -05:00
Note: Now start vim with plain `vim`, not `vim .`
2016-10-02 07:37:21 -04:00
---
2019-11-16 10:28:42 -05:00
#### What if I'm also opening a saved session, for example `vim -S session_file.vim`? I don't want NERDTree to open in that scenario.
```vim
autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 0 && !exists("s:std_in") && v:this_session == "" | NERDTree | endif
```
2016-10-02 07:37:21 -04:00
2019-11-16 10:28:42 -05:00
---
#### How can I open NERDTree automatically when vim starts up on opening a directory?
```vim
autocmd StdinReadPre * let s:std_in=1
autocmd VimEnter * if argc() == 1 && isdirectory(argv()[0]) && !exists("s:std_in") | exe 'NERDTree' argv()[0] | wincmd p | ene | exe 'cd '.argv()[0] | endif
```
2016-10-02 07:37:21 -04:00
2016-11-09 12:22:55 -05:00
This window is tab-specific, meaning it's used by all windows in the tab. This trick also prevents NERDTree from hiding when first selecting a file.
2016-10-02 07:37:21 -04:00
2019-03-08 06:04:56 -05:00
Note: Executing `vim ~/some-directory` will open NERDTree and a new edit window. `exe 'cd '.argv()[0]` sets the `pwd` of the new edit window to `~/some-directory`
2016-05-14 07:57:54 -04:00
---
2019-11-16 10:28:42 -05:00
#### How can I map a specific key or shortcut to open NERDTree?
2012-08-16 23:41:25 -04:00
2015-07-13 06:22:46 -04:00
Stick this in your vimrc to open NERDTree with `Ctrl+n` (you can set whatever key you want):
2019-11-16 10:28:42 -05:00
```vim
map <C-n> :NERDTreeToggle<CR>
```
2012-08-16 23:41:25 -04:00
2016-05-14 07:57:54 -04:00
---
2019-11-16 10:28:42 -05:00
#### How can I close vim if the only window left open is a NERDTree?
2012-08-16 23:41:25 -04:00
2015-07-13 06:22:46 -04:00
Stick this in your vimrc:
2019-11-16 10:28:42 -05:00
```vim
autocmd bufenter * if (winnr("$") == 1 && exists("b:NERDTree") && b:NERDTree.isTabTree()) | q | endif
```
2012-08-16 23:41:25 -04:00
2016-05-14 07:57:54 -04:00
---
2019-11-16 10:28:42 -05:00
#### Can I have different highlighting for different file extensions?
2012-08-16 23:41:25 -04:00
2020-01-07 07:45:07 -05:00
See here: https://github.com/preservim/nerdtree/issues/433#issuecomment-92590696
2015-12-08 08:20:04 -05:00
2016-05-14 07:57:54 -04:00
---
2019-11-16 10:28:42 -05:00
#### How can I change default arrows?
2015-12-08 08:20:04 -05:00
Use these variables in your vimrc. Note that below are default arrow symbols
2019-11-16 10:28:42 -05:00
```vim
let g:NERDTreeDirArrowExpandable = '▸'
let g:NERDTreeDirArrowCollapsible = '▾'
```