Skip to content

Commit 9a9055c

Browse files
committed
Version 9.1 and above supported
M README.md M doc/vimcomplete.txt M plugin/addons.vim M plugin/vimcomplete.vim
1 parent 184022f commit 9a9055c

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Completion items are _sorted_ according to the following criteria:
5050

5151
# Requirements
5252

53-
- Vim version 9.0 or higher
53+
- Vim version 9.1 or higher
5454

5555
# Installation
5656

doc/vimcomplete.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
*vimcomplete.txt* Autocompletion Plugin for Vim
22

33
Author: Girish (girishji AT gmail DOT com)
4-
For Vim version 9.0 and above
4+
For Vim version 9.1 and above
55

66
==============================================================================
77
CONTENTS *vimcomplete-contents*

plugin/addons.vim

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
if !has('vim9script') || v:versionlong < 9000196
2-
" Needs Vim version 9.0.0196 and above
1+
if !has('vim9script') || v:version < 901
32
finish
43
endif
54

plugin/vimcomplete.vim

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
if !has('vim9script') || v:version < 900
2-
" Needs Vim version 9.0 and above
1+
if !has('vim9script') || v:version < 901
32
finish
43
endif
54

0 commit comments

Comments
 (0)