From 21324f72e6115da7c5a64693cbb893b57b03a1d9 Mon Sep 17 00:00:00 2001 From: Colton Staiduhar Date: Sun, 26 Apr 2026 16:34:24 -0400 Subject: [PATCH] VSCode Debugger Fix --- .vscode/launch.json | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 2ce0034..f865d09 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -14,7 +14,12 @@ ], "stopAtEntry": false, "cwd": "${workspaceFolder}", - "environment": [], + "environment": [ + { + "name": "TERM", + "value": "xterm-256color" + } + ], "externalConsole": false, "MIMode": "lldb", "setupCommands": [ @@ -30,6 +35,5 @@ } ] } - ] -} +} \ No newline at end of file