0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

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>
This commit is contained in:
Christian Brabandt 2024-08-05 21:16:11 +02:00
parent 19636be55e
commit e1044fb72e
No known key found for this signature in database
GPG Key ID: F3F92DA383FDDE09

View File

@ -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