From 04ac39b4b92262935cdd76299dc6476f74915245 Mon Sep 17 00:00:00 2001 From: Keith Laban Date: Wed, 2 Jul 2014 19:46:03 -0400 Subject: [PATCH] Fixes README for opening vim with no files --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index bfae5c6..9dacf68 100644 --- 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?__