Skip to content

Commit 741f62c

Browse files
committed
feat: bump to copilot.vim 1.7.0
1 parent 3f1e657 commit 741f62c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ require('copilot').setup({
108108
cvs = false,
109109
["."] = false,
110110
},
111-
copilot_node_command = 'node', -- Node version must be < 18
111+
copilot_node_command = 'node', -- Node.js version must be > 16.x
112112
server_opts_overrides = {},
113113
})
114114
```
@@ -192,12 +192,12 @@ require("copilot").setup {
192192

193193
### copilot_node_command
194194

195-
Use this field to provide the path to a specific node version such as one installed by nvm. Node version must be < 18. The LTS version of node (16.17.0) is recommended.
195+
Use this field to provide the path to a specific node version such as one installed by nvm. Node.js version must be 16.x or newer.
196196

197197
Example:
198198

199199
```lua
200-
copilot_node_command = vim.fn.expand("$HOME") .. "/.config/nvm/versions/node/v16.14.2/bin/node", -- Node version must be < 18
200+
copilot_node_command = vim.fn.expand("$HOME") .. "/.config/nvm/versions/node/v16.14.2/bin/node", -- Node.js version must be > 16.x
201201
```
202202

203203
### server_opts_overrides

lua/copilot/util.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function M.get_editor_info()
1717
},
1818
editorPluginInfo = {
1919
name = "copilot.vim",
20-
version = "1.6.1",
20+
version = "1.7.0",
2121
},
2222
}
2323
return info

0 commit comments

Comments
 (0)