diff options
| author | Richard Stalin <rms@sl0p.foo> | 2026-07-11 22:30:05 +0200 |
|---|---|---|
| committer | Richard Stalin <rms@sl0p.foo> | 2026-07-11 22:30:05 +0200 |
| commit | 8d92208fcec4b01a1f6e227b188b30477087c08e (patch) | |
| tree | 6d7542649e8ce426e3324576a58f8ff17ab4fa0c /.gitignore | |
| download | gdb-driver-main.tar.gz gdb-driver-main.tar.xz gdb-driver-main.zip | |
Embedded gdb-Python plugin exposing a JSONL unix-socket RPC: three tiers of
control (raw tmux keys / semantic verbs / structured introspection), real
stop-event settling, and gef>-prompt command echoing so the tmux pane stays
human-legible. Includes the drive/pane client CLIs, an end-to-end smoke test,
and the TUI-driving design blueprint.
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f517d84 --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +# python runtime cruft +__pycache__/ +*.pyc +.venv/ +venv/ + +# gdb core dumps from target crashes +core +core.* + +# livestream / session scratch — not part of the tool +.auto/ +crack-roulette.md +solve-puzzle.md +*_solution.md +lain_is_here.png |
