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:
parent
c7cd8fc24c
commit
78dbd398a8
1 changed files with 1 additions and 1 deletions
|
|
@ -183,7 +183,7 @@ function M.ensure(callback)
|
||||||
local arch = get_arch()
|
local arch = get_arch()
|
||||||
local ext = get_ext()
|
local ext = get_ext()
|
||||||
local filename = ('libvscode_diff_%s_%s_%s.%s'):format(os_name, arch, EXPECTED_VERSION, 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,
|
EXPECTED_VERSION,
|
||||||
filename
|
filename
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue