Running & Debugging Executables
// Python PDB Debugging
Press F9 to insert breakpoints inside Python scripts. When you run with F6, the code pauses at breakpoints and launches the PDB terminal shell dashboard.
// C/C++ GDB Debugging
TermStudio integrates with gdb. Breakpoints, variable watches, and stack traces are displayed in the split diagnostic layout panels.
// Node.js Debugging
Execute Node scripts with the debug flag --inspect. TermStudio hooks into the V8 debugger protocol, showing call stacks and console outputs in real time.