changeset 35917:e1eb5da83320

runtime(zip): raise minimum Vim version to v9.0 Commit: https://github.com/vim/vim/commit/e1044fb72edfc5d1a49d11e887521ce8900a99a5 Author: Christian Brabandt <cb@256bit.org> Date: Mon Aug 5 21:16:11 2024 +0200 runtime(zip): raise minimum Vim version to v9.0 Problem: the zip plugin uses features of Vim 9.0, but checks for a Vim version >= 7.2 (interpolated strings and readblob() function) Solution: raise the minimum Vim version to v9.0 Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Tue, 06 Aug 2024 20:30:07 +0200
parents 90e3a4166480
children 591dd2b2fa00
files runtime/autoload/zip.vim
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/runtime/autoload/zip.vim
+++ b/runtime/autoload/zip.vim
@@ -29,9 +29,9 @@ if &cp || exists("g:loaded_zip")
  finish
 endif
 let g:loaded_zip= "v33"
-if v:version < 702
+if v:version < 900
  echohl WarningMsg
- echomsg "***warning*** this version of zip needs vim 7.2 or later"
+ echomsg "***warning*** this version of zip needs vim 9.0 or later"
  echohl Normal
  finish
 endif