From e8f2c58d0aa764dd06499b60d77efee0c80cf1e2 Mon Sep 17 00:00:00 2001 From: Bas van den Wollenberg Date: Thu, 22 Jan 2026 20:17:10 +0100 Subject: [PATCH] fix: also search for tsgo watch mode output string --- lua/tsc/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/tsc/init.lua b/lua/tsc/init.lua index 0853b8a..20a6569 100644 --- a/lua/tsc/init.lua +++ b/lua/tsc/init.lua @@ -258,7 +258,7 @@ M.run = function() end for _, value in pairs(output) do - if string.find(value, "Watching for file changes") then + if string.find(value, "Watching for file changes") or string.find(value, "build finished in") then on_stdout(total_output, project) total_output = {} create_output()