nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit a229d8bb610e522b2777ddad9374c4f8afa85fbf
parent b78fa833730de846c132a7318a00d8fb4fe29581
Author: Ggicci <ggicci@163.com>
Date:   Tue, 11 Oct 2016 00:02:29 +0800

Remove a similar tip in README file.

Diffstat:
MREADME.markdown | 12+-----------
1 file changed, 1 insertion(+), 11 deletions(-)
diff --git a/README.markdown b/README.markdown
@@ -102,7 +102,7 @@ Note: Now start vim with plain `vim`, not `vim .`
 
 
 ---
-> How can I open NERDTree as a tab window automatically when vim starts up on opening a directory?
+> How can I open NERDTree as a window 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
@@ -110,16 +110,6 @@ Note: Now start vim with plain `vim`, not `vim .`
 This trick also prevents NERDTree from hiding when first select a file.
 
 ---
-> 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)*
- 
----
 > How can I map a specific key or shortcut to open NERDTree?
 
 Stick this in your vimrc to open NERDTree with `Ctrl+n` (you can set whatever key you want):