vimPlugins: update on 2025-12-19

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman
2025-12-19 08:27:25 -06:00
parent 96188a7a87
commit 9db45a04b5
3 changed files with 207 additions and 272 deletions
File diff suppressed because it is too large Load Diff
@@ -3612,10 +3612,10 @@ assertNoAdditions {
};
tsc-nvim = super.tsc-nvim.overrideAttrs {
patches = [ ./patches/tsc.nvim/fix-path.patch ];
postPatch = ''
substituteInPlace lua/tsc/utils.lua --replace-fail '@tsc@' ${typescript}/bin/tsc
substituteInPlace lua/tsc/utils.lua --replace-fail \
'bin_name = bin_name or "tsc"' \
'bin_name = bin_name or "${typescript}/bin/tsc"'
'';
# Unit test
@@ -1,13 +0,0 @@
diff --git a/lua/tsc/utils.lua b/lua/tsc/utils.lua
index 6433bcb..75760f9 100644
--- a/lua/tsc/utils.lua
+++ b/lua/tsc/utils.lua
@@ -16,7 +16,7 @@ M.find_tsc_bin = function()
return node_modules_tsc_binary
end
- return "tsc"
+ return "@tsc@"
end
--- @param run_mono_repo boolean