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:
parent
a3f0e66793
commit
67fa9b3116
@ -14,7 +14,7 @@
|
|||||||
if exists("loaded_nerd_tree")
|
if exists("loaded_nerd_tree")
|
||||||
finish
|
finish
|
||||||
endif
|
endif
|
||||||
if v:version < 730
|
if v:version < 703
|
||||||
echoerr "NERDTree: this plugin requires vim >= 7.3. DOWNLOAD IT! You'll thank me later!"
|
echoerr "NERDTree: this plugin requires vim >= 7.3. DOWNLOAD IT! You'll thank me later!"
|
||||||
finish
|
finish
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user