]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(tar): update minimum Vim version required for tar.vim
authorChristian Brabandt <cb@256bit.org>
Wed, 16 Jul 2025 16:28:11 +0000 (18:28 +0200)
committerChristian Brabandt <cb@256bit.org>
Wed, 16 Jul 2025 16:28:11 +0000 (18:28 +0200)
related: #17733

Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/autoload/tar.vim

index 1a0d4f8a3d28e407dbe971fadbf6c3b218e44e07..74a5b38f78e4fa9ac867c129eae1394eca1b2278 100644 (file)
@@ -17,6 +17,7 @@
 "   2025 Apr 16 by Vim Project: decouple from netrw by adding s:WinPath()
 "   2025 May 19 by Vim Project: restore working directory after read/write
 "   2025 Jul 13 by Vim Project: warn with path traversal attacks
+"   2025 Jul 16 by Vim Project: update minimum vim version
 "
 "      Contains many ideas from Michael Toren's <tar.vim>
 "
@@ -35,9 +36,9 @@ if &cp || exists("g:loaded_tar")
  finish
 endif
 let g:loaded_tar= "v32b"
-if v:version < 900
+if v:versionlong < 9011024
  echohl WarningMsg
- echo "***warning*** this version of tar needs vim 9.0"
+ echo "***warning*** this version of tar needs vim 9.1.1024"
  echohl Normal
  finish
 endif