diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-08-07 07:10:41 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2024-08-07 07:16:26 +0800 |
commit | 025920b330c4dc14ef1df780794cf27a4e504e94 (patch) | |
tree | 92f4bd99694fcb282bcac53264a8b144b37bb511 | |
parent | 92981c8e0bea4a2ef23665df61aa820ed0a23eb3 (diff) | |
download | rneovim-025920b330c4dc14ef1df780794cf27a4e504e94.tar.gz rneovim-025920b330c4dc14ef1df780794cf27a4e504e94.tar.bz2 rneovim-025920b330c4dc14ef1df780794cf27a4e504e94.zip |
vim-patch:a336d8f: runtime(zip): increment base version of zip plugin
Problem: the zip plugin version is still v33
Solution: increment the version to v34
https://github.com/vim/vim/commit/a336d8f21e4cce877e23d47db238801a5a406992
Co-authored-by: Christian Brabandt <cb@256bit.org>
-rw-r--r-- | runtime/autoload/zip.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/autoload/zip.vim b/runtime/autoload/zip.vim index 7e833fe5ad..5e56086484 100644 --- a/runtime/autoload/zip.vim +++ b/runtime/autoload/zip.vim @@ -1,7 +1,7 @@ " zip.vim: Handles browsing zipfiles " AUTOLOAD PORTION " Date: Aug 05, 2024 -" Version: 33 +" Version: 34 " Maintainer: This runtime file is looking for a new maintainer. " Former Maintainer: Charles E Campbell " Last Change: @@ -28,7 +28,7 @@ if &cp || exists("g:loaded_zip") finish endif -let g:loaded_zip= "v33" +let g:loaded_zip= "v34" if v:version < 702 echohl WarningMsg echomsg "***warning*** this version of zip needs vim 7.2 or later" |