We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5e7675 commit 4f6329cCopy full SHA for 4f6329c
lua/copilot/command.lua
@@ -9,7 +9,7 @@ function mod.version()
9
10
local lines = {
11
info.editorInfo.name .. " " .. info.editorInfo.version,
12
- info.editorPluginInfo.name .. " " .. info.editorPluginInfo.version,
+ "copilot.vim" .. " " .. info.editorPluginInfo.version,
13
"copilot.lua" .. " " .. u.get_copilot_lua_version(),
14
}
15
lua/copilot/util.lua
@@ -18,7 +18,8 @@ function M.get_editor_info()
18
version = string.match(vim.fn.execute("version"), "NVIM v(%S+)"),
19
},
20
editorPluginInfo = {
21
- name = "copilot.vim",
+ name = "copilot.lua",
22
+ -- reflects version of github/copilot.vim
23
version = "1.10.0",
24
25
0 commit comments