Skip to content

Commit 467f4e0

Browse files
committed
Fix version check
1 parent b603990 commit 467f4e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/copilot.vim

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ scriptencoding utf-8
77

88
command! -bang -nargs=? -range=-1 -complete=customlist,copilot#CommandComplete Copilot exe copilot#Command(<line1>, <count>, +"<range>", <bang>0, "<mods>", <q-args>)
99

10-
if v:version < 800 || !exists('##CompleteChanged')
10+
if v:version < 900 || !exists('##CompleteChanged')
1111
finish
1212
endif
1313

0 commit comments

Comments
 (0)