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 4c8be48 commit a952473Copy full SHA for a952473
lua/copilot/health.lua
@@ -5,7 +5,6 @@ local auth = require("copilot.auth")
5
local c = require("copilot.client")
6
local config = require("copilot.config")
7
8
--- Health API compatibility (for older/newer Neovim versions)
9
local start = vim.health.start or vim.health.report_start
10
local ok = vim.health.ok or vim.health.report_ok
11
local warn = vim.health.warn or vim.health.report_warn
@@ -18,7 +17,6 @@ function M.check()
18
17
19
start("Copilot Dependencies")
20
21
- -- Check for Node.js (required by Copilot LSP)
22
if vim.fn.executable("node") == 1 then
23
local node_version = vim.fn.system("node --version"):gsub("\n", "")
24
ok("`node` found: " .. node_version)
0 commit comments