]> ruderich.org/simon Gitweb - config/dotfiles.git/blobdiff - gdbinit
mysql/my.conf: Add. MySQL client configuration file.
[config/dotfiles.git] / gdbinit
diff --git a/gdbinit b/gdbinit
index 82811ca74c3c5d9b977e0907febdcab90e1b6cd1..b179e637e49ee439948076d232312cfc353a0cdb 100644 (file)
--- a/gdbinit
+++ b/gdbinit
 
 # Save command history.
 set history save on
-# And save 1024 entries.
-set history size 1024
+# And save more entries.
+set history size 10000
+
+
+# Always disassemble next command/instruction. Very useful when debugging code
+# without debug information.
+set disassemble-next-line on
 
 # vim: ft=gdb