Skip to content

Commit 9a9b1db

Browse files
committed
fix: windows arguments handling
1 parent 87000a3 commit 9a9b1db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/typescript-tools/process.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ function Process:start()
131131

132132
if is_win then
133133
table.insert(self.args, 1, "/c")
134-
table.insert(self.args, 2, "node")
134+
table.insert(self.args, 2, plugin_config.tsserver_node_executable)
135135
end
136136

137137
local args = {

0 commit comments

Comments
 (0)