From d533312bdd6f2017f395d6aaee6bb946172a4deb Mon Sep 17 00:00:00 2001 From: Michael <2701605+michaelblyons@users.noreply.github.com> Date: Thu, 13 Nov 2025 15:00:32 -0500 Subject: [PATCH] Disable ANSI escape colors in build output --- Support/Powershell.sublime-build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Support/Powershell.sublime-build b/Support/Powershell.sublime-build index c902151..f27af30 100644 --- a/Support/Powershell.sublime-build +++ b/Support/Powershell.sublime-build @@ -1,6 +1,9 @@ { "cmd": ["pwsh", "-noprofile", "-ExecutionPolicy", "Bypass", "-file", "$file"], "selector": "source.powershell", + "env": { + "TERM": "dumb", + }, "windows": { "cmd": ["powershell.exe", "-noprofile", "-ExecutionPolicy", "Bypass", "-file", "$file"],