Skip to content

Commit

Permalink
Fix version check
Browse files Browse the repository at this point in the history
  • Loading branch information
zrax committed May 7, 2024
1 parent b603990 commit 467f4e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/copilot.vim
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ scriptencoding utf-8

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

if v:version < 800 || !exists('##CompleteChanged')
if v:version < 900 || !exists('##CompleteChanged')
finish
endif

Expand Down

0 comments on commit 467f4e0

Please sign in to comment.