Skip to content

Commit a952473

Browse files
author
Nicholas deLannoy
committed
clean up
1 parent 4c8be48 commit a952473

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

lua/copilot/health.lua

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ local auth = require("copilot.auth")
55
local c = require("copilot.client")
66
local config = require("copilot.config")
77

8-
-- Health API compatibility (for older/newer Neovim versions)
98
local start = vim.health.start or vim.health.report_start
109
local ok = vim.health.ok or vim.health.report_ok
1110
local warn = vim.health.warn or vim.health.report_warn
@@ -18,7 +17,6 @@ function M.check()
1817

1918
start("Copilot Dependencies")
2019

21-
-- Check for Node.js (required by Copilot LSP)
2220
if vim.fn.executable("node") == 1 then
2321
local node_version = vim.fn.system("node --version"):gsub("\n", "")
2422
ok("`node` found: " .. node_version)

0 commit comments

Comments
 (0)