From 6b04087e5e6cc48afcfd23bf80e4f03db0b5ee7d Mon Sep 17 00:00:00 2001 From: Beibin Li Date: Tue, 23 Aug 2022 11:10:55 -0700 Subject: [PATCH 1/2] Loose the version constraint with Vim --- autoload/copilot.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/copilot.vim b/autoload/copilot.vim index 568bc531..b45200fe 100644 --- a/autoload/copilot.vim +++ b/autoload/copilot.vim @@ -6,7 +6,7 @@ let g:autoloaded_copilot = 1 scriptencoding utf-8 let s:has_nvim_ghost_text = has('nvim-0.6') && exists('*nvim_buf_get_mark') -let s:has_vim_ghost_text = has('patch-9.0.0162') && has('textprop') +let s:has_vim_ghost_text = has('patch-9.0.0105') && has('textprop') let s:has_ghost_text = s:has_nvim_ghost_text || s:has_vim_ghost_text let s:hlgroup = 'CopilotSuggestion' From 55da7b13c0bb76951855ab4673f99997feb8eae0 Mon Sep 17 00:00:00 2001 From: Beibin Li Date: Tue, 23 Aug 2022 11:11:10 -0700 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 45764a1e..72050b4c 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ Terms](https://docs.github.com/en/site-policy/github-terms/github-terms-for-addi ## Getting started -1. Install [Neovim][] or the latest patch of [Vim][] (9.0.0162 or newer). +1. Install [Neovim][] or the latest patch of [Vim][] (9.0.0105 or newer). 2. Install [Node.js][] version 16. (Other versions should work too, except Node 18 which isn't supported yet.)