We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e43536 commit c415c4eCopy full SHA for c415c4e
lua/copilot/init.lua
@@ -5,6 +5,14 @@ local client = require("copilot.client")
5
local config = require("copilot.config")
6
7
M.setup = function(opts)
8
+ if vim.fn.has("nvim-0.11") == 0 then
9
+ vim.notify_once(
10
+ "[copilot.lua] Neovim 0.11+ will soon be required. Please upgrade your Neovim version if you wish to keep using this plugin.",
11
+ vim.log.levels.WARN
12
+ )
13
+ return
14
+ end
15
+
16
if M.setup_done then
17
return
18
end
0 commit comments