Skip to content

Commit 70e73c0

Browse files
committed
Update version check
#100 M plugin/addons.vim M plugin/vimcomplete.vim
1 parent 9a9055c commit 70e73c0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

plugin/addons.vim

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
if !has('vim9script') || v:version < 901
1+
if !has('vim9script') || v:versionlong < 9010646
2+
echoerr "VimComplete: Needs Vim 9.1.0646 or higher"
23
finish
34
endif
45

plugin/vimcomplete.vim

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
if !has('vim9script') || v:version < 901
1+
if !has('vim9script') || v:versionlong < 9010646
2+
echoerr "VimComplete: Needs Vim 9.1.0646 or higher"
23
finish
34
endif
45

0 commit comments

Comments
 (0)