nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 10ac799808bd5a2b919fd300074b50dd36be10f4
parent 148e8570df11ca300f4bebc10d3d3c72357e6f52
Author: Phil Runninger <PhilRunninger@users.noreply.github.com>
Date:   Mon, 10 Oct 2016 15:16:00 -0400

Update README.markdown

Adjusted the wording of one of the tips, and added a sentence about the type of NERDTree window that is displayed. See pull reqest #628.
Diffstat:
MREADME.markdown | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/README.markdown b/README.markdown
@@ -100,14 +100,13 @@ Stick this in your vimrc:
 
 Note: Now start vim with plain `vim`, not `vim .`
 
-
 ---
-> How can I open NERDTree as a window automatically when vim starts up on opening a directory?
+> How can I open NERDTree automatically when vim starts up on opening a directory?
 
     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 | endif
 
-This trick also prevents NERDTree from hiding when first select a file.
+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.
 
 ---
 > How can I map a specific key or shortcut to open NERDTree?