Change version check to look for 03 not 30 (#994)

My Vim reports as 704 when it is version 7.4, so this number should be 703 not 730
This commit is contained in:
Daniel Manary 2019-05-09 16:25:36 -04:00 committed by Phil Runninger
parent a3f0e66793
commit 67fa9b3116

View File

@ -14,7 +14,7 @@
if exists("loaded_nerd_tree")
finish
endif
if v:version < 730
if v:version < 703
echoerr "NERDTree: this plugin requires vim >= 7.3. DOWNLOAD IT! You'll thank me later!"
finish
endif