Commit: 33aa27332f09c024c8cfd312ff7e75e2c2a7a8a3
Parent: 8be1b527bc05de2314536887bfac16fd1f38fffa
Author: Randy Palamar
Date: Mon, 9 Dec 2024 07:17:32 -0700
gdb: don't confirm on kill/quit
Diffstat:
1 file changed, 9 insertions(+), 0 deletions(-)
diff --git a/.config/gdb/gdbinit b/.config/gdb/gdbinit
@@ -1,3 +1,12 @@
tui new-layout hackerman {-horizontal regs 1 asm 1} 2 src 2 status 0 cmd 1
source ~/.config/gdb/plugins.py
+
+set breakpoint pending on
+
+define hook-quit
+ set confirm off
+end
+define hook-kill
+ set confirm off
+end