Change minimum vim (#991)

* Add a new function to implement and() from vim 7.4.

* Change minimum required version of vim to 7.3.
This commit is contained in:
Phil Runninger
2019-05-09 10:12:25 -04:00
committed by GitHub
parent 3c06335782
commit a3f0e66793
4 changed files with 27 additions and 4 deletions

View File

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