From 78dbd398a87e610c2441c99140731644c1e999bf Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Tue, 10 Mar 2026 11:09:04 -0400 Subject: [PATCH] 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 --- lua/diffs/lib.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/diffs/lib.lua b/lua/diffs/lib.lua index 8376925..291d7d5 100644 --- a/lua/diffs/lib.lua +++ b/lua/diffs/lib.lua @@ -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 )