We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6401024 commit 9e1e7afCopy full SHA for 9e1e7af
2 files changed
runtime/autoload/netrw.vim
@@ -22,8 +22,8 @@
22
if &cp || exists("g:loaded_netrw")
23
finish
24
endif
25
-" netrw requires vim having patch 213; netrw will benefit from vim's having patch#656, too
26
-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"))
27
if !exists("s:needpatch213")
28
unsilent echomsg "***sorry*** this version of netrw requires vim v7.4 with patch 213"
29
src/version.c
@@ -764,6 +764,8 @@ static char *(features[]) =
764
765
static int included_patches[] =
766
{ /* Add new patch number below this line */
767
+/**/
768
+ 2,
769
/**/
770
1,
771
0 commit comments