nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 7f36008e8082d571148949952dbef8ea091e9bbb
parent 23dfc6d8181da7d423ca89a950c69ee5694ea2c6
Author: Martin Grenfell <martin.grenfell@gmail.com>
Date:   Mon,  7 Jul 2014 23:02:14 +0100

Merge branch 'master' of github.com:scrooloose/nerdtree

Diffstat:
MREADME.markdown | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.markdown b/README.markdown
@@ -83,7 +83,7 @@ __Q. How can I open a NERDTree automatically when vim starts up if no files were
 A. Stick this in your vimrc
 
     autocmd StdinReadPre * let s:std_in=1
-    autocmd VimEnter * if !argc() == 0 && !exists("s:std_in") | NERDTree | endif
+    autocmd VimEnter * if argc() == 0 && !exists("s:std_in") | NERDTree | endif
 
 __Q. How can I map a specific key or shortcut to open NERDTree?__