code-debug
code-debug copied to clipboard
Native debugging for VSCode
I think it's necessary to monitor register values in native debug. Currently we have to use `info all-register` to see register values during a debug session, I hope that Native...
Hi, I've added a register view using a TreeView. It doesn't distinguish GPR from the other types of registers at all. Let me know if you think this is acceptable....
This extends gdb launch configurations to support extended-remote. It can be used for remote debugging where code is compiled on host, and transferred and debugged on target using a remote...
Add support for debugging applications which fork, gated behind a new configuration flag. GDB only.
Presently, code-debug can either start a locally available gdb executable or open an ssh session to a remote host and spawn a gdb there talking mi2. However, it will be...
I _thought_ to have read somewhere that frame filters are enabled, but actually they aren't. Enabling one and then executing "bt" shows the expected result, but after `step` (where we...
See https://github.com/WebFreak001/code-debug/issues/26
The vscode debug browser ui used to split words by the following: ```typescript // Match any character except a set of characters which often break interesting sub-expressions let expression: RegExp...