VSCode Debugger Fix

This commit is contained in:
2026-04-26 16:34:24 -04:00
parent 049c2df51a
commit 21324f72e6

10
.vscode/launch.json vendored
View File

@@ -14,7 +14,12 @@
], ],
"stopAtEntry": false, "stopAtEntry": false,
"cwd": "${workspaceFolder}", "cwd": "${workspaceFolder}",
"environment": [], "environment": [
{
"name": "TERM",
"value": "xterm-256color"
}
],
"externalConsole": false, "externalConsole": false,
"MIMode": "lldb", "MIMode": "lldb",
"setupCommands": [ "setupCommands": [
@@ -30,6 +35,5 @@
} }
] ]
} }
] ]
} }