vimPlugins: update on 2025-12-19 (#472399)
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -3590,10 +3590,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
|
||||
Reference in New Issue
Block a user