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

139 lines
4.8 KiB
Markdown
Raw Normal View History

2012-08-16 23:41:25 -04:00
The NERD Tree
=============
Intro
-----
The NERD tree allows you to explore your filesystem and to open files and
directories. It presents the filesystem to you in the form of a tree which you
manipulate with the keyboard and/or mouse. It also allows you to perform
simple filesystem operations.
The following features and functionality are provided by the NERD tree:
* Files and directories are displayed in a hierarchical tree structure
* Different highlighting is provided for the following types of nodes:
* files
* directories
* sym-links
* windows .lnk files
* read-only files
* executable files
* Many (customisable) mappings are provided to manipulate the tree:
* Mappings to open/close/explore directory nodes
* Mappings to open files in new/existing windows/tabs
* Mappings to change the current root of the tree
* Mappings to navigate around the tree
* ...
* Directories and files can be bookmarked.
* Most NERD tree navigation can also be done with the mouse
* Filtering of tree content (can be toggled at runtime)
* custom file filters to prevent e.g. vim backup files being displayed
* optional displaying of hidden files (. files)
* files can be "turned off" so that only directories are displayed
* The position and size of the NERD tree window can be customised
* The order in which the nodes in the tree are listed can be customised.
* A model of your filesystem is created/maintained as you explore it. This
has several advantages:
* All filesystem information is cached and is only re-read on demand
* If you revisit a part of the tree that you left earlier in your
session, the directory nodes will be opened/closed as you left them
* The script remembers the cursor position and window position in the NERD
tree so you can toggle it off (or just close the tree window) and then
reopen it (with NERDTreeToggle) the NERD tree window will appear exactly
as you left it
* You can have a separate NERD tree for each tab, share trees across tabs,
or a mix of both.
2013-05-25 20:31:29 -04:00
* By default the script overrides the default file browser (netrw), so if
you :edit a directory a (slightly modified) NERD tree will appear in the
2012-08-16 23:41:25 -04:00
current window
* A programmable menu system is provided (simulates right clicking on a node)
2013-05-25 20:31:29 -04:00
* one default menu plugin is provided to perform basic filesystem
2012-08-16 23:41:25 -04:00
operations (create/delete/move/copy files/directories)
* There's an API for adding your own keymappings
Installation
------------
2015-12-08 08:20:04 -05:00
####[pathogen.vim](https://github.com/tpope/vim-pathogen)
2012-08-16 23:41:25 -04:00
2016-10-02 07:37:21 -04:00
git clone https://github.com/scrooloose/nerdtree.git ~/.vim/bundle/nerdtree
2012-08-16 23:41:25 -04:00
2016-10-02 07:37:21 -04:00
Then reload vim, run `:helptags ~/.vim/bundle/nerdtree/doc/`, and check out `:help NERD_tree.txt`.
2012-08-16 23:41:25 -04:00
2015-12-08 08:20:04 -05:00
####[apt-vim](https://github.com/egalpin/apt-vim)
apt-vim install -y https://github.com/scrooloose/nerdtree.git
2012-08-16 23:41:25 -04:00
Faq
---
2015-07-13 06:22:46 -04: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
---
2012-08-16 23:41:25 -04:00
2015-07-13 06:22:46 -04: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
---
2015-07-13 06:22:46 -04: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
---
2015-07-13 06:22:46 -04: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:
2014-10-31 17:30:24 -04:00
2015-07-13 06:22:46 -04:00
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
---
> How can I open NERDTree on startup, and have my cursor start in the other window?
Stick this in your vimrc:
autocmd vimenter * NERDTree
autocmd vimenter * wincmd p
*via [stackoverflow/Yohann](http://stackoverflow.com/questions/4277808/nerdtree-auto-focus-to-file-when-opened-in-new-tab/19330023#19330023)*
2016-05-14 07:57:54 -04:00
---
2015-07-13 06:22:46 -04: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):
2012-08-16 23:41:25 -04:00
2015-07-13 06:22:46 -04:00
map <C-n> :NERDTreeToggle<CR>
2012-08-16 23:41:25 -04:00
2016-05-14 07:57:54 -04:00
---
2015-07-13 06:22:46 -04: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:
2012-08-16 23:41:25 -04:00
2015-12-08 08:20:04 -05:00
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
---
2015-07-13 06:22:46 -04:00
> Can I have different highlighting for different file extensions?
2012-08-16 23:41:25 -04:00
2015-07-13 06:22:46 -04:00
See here: https://github.com/scrooloose/nerdtree/issues/433#issuecomment-92590696
2015-12-08 08:20:04 -05:00
2016-05-14 07:57:54 -04:00
---
2015-12-08 08:20:04 -05:00
> How can I change default arrows?
Use these variables in your vimrc. Note that below are default arrow symbols
2016-10-02 07:37:21 -04:00
let g:NERDTreeDirArrowExpandable = '►'
let g:NERDTreeDirArrowCollapsible = '▼'