aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-04-28 22:37:53 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-04-28 22:41:07 +0200
commitbecde1745aa2ee84158b26ec14f14e1941fcc7d8 (patch)
tree3a6bd05bcc25e010f13fbea83e45086da303cd29
parent00bdf9ae83086b8e2204332cd32f1a615d8a6528 (diff)
downloadrneovim-becde1745aa2ee84158b26ec14f14e1941fcc7d8.tar.gz
rneovim-becde1745aa2ee84158b26ec14f14e1941fcc7d8.tar.bz2
rneovim-becde1745aa2ee84158b26ec14f14e1941fcc7d8.zip
vim-patch:8.0.0002
Problem: The netrw plugin does not work. Solution: Make it accept version 8.0. https://github.com/vim/vim/commit/9e1e7afc1f29b67fe3721442b49af3b20644a3ee vim-patch:b56e7ff0dbbf Update translations for intro page. https://github.com/vim/vim/commit/b56e7ff0dbbfa85361bdbc5b4a86ff8b57a7acbb
-rw-r--r--runtime/autoload/netrw.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/autoload/netrw.vim b/runtime/autoload/netrw.vim
index de85844d5d..76485c2f38 100644
--- a/runtime/autoload/netrw.vim
+++ b/runtime/autoload/netrw.vim
@@ -22,8 +22,8 @@
if &cp || exists("g:loaded_netrw")
finish
endif
-" netrw requires vim having patch 213; netrw will benefit from vim's having patch#656, too
-if v:version < 704 || !has("patch213")
+" netrw requires vim having patch 7.4.213; netrw will benefit from vim's having patch#656, too
+if v:version < 704 || (v:version == 704 && !has("patch213"))
if !exists("s:needpatch213")
unsilent echomsg "***sorry*** this version of netrw requires vim v7.4 with patch 213"
endif