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,
"cwd": "${workspaceFolder}",
"environment": [],
"environment": [
{
"name": "TERM",
"value": "xterm-256color"
}
],
"externalConsole": false,
"MIMode": "lldb",
"setupCommands": [
@@ -30,6 +35,5 @@
}
]
}
]
}
}