fix(lib): update vscode-diff download URL to codediff.nvim

Problem: The `esmuellert/vscode-diff.nvim` repo was renamed to
`esmuellert/codediff.nvim`. The old URL still redirects but may
break in the future.

Solution: Update the release download URL in `lib.lua` to point
to the new `codediff.nvim` repository name.

Closes #181
This commit is contained in:
Barrett Ruth 2026-03-10 11:09:04 -04:00
parent c7cd8fc24c
commit 78dbd398a8

View file

@ -183,7 +183,7 @@ function M.ensure(callback)
local arch = get_arch()
local ext = get_ext()
local filename = ('libvscode_diff_%s_%s_%s.%s'):format(os_name, arch, EXPECTED_VERSION, ext)
local url = ('https://github.com/esmuellert/vscode-diff.nvim/releases/download/v%s/%s'):format(
local url = ('https://github.com/esmuellert/codediff.nvim/releases/download/v%s/%s'):format(
EXPECTED_VERSION,
filename
)