| Debugging with GDB | www.imodulo.com · 2003-04-05 | ||
| [ Software | Documentation | Contact ] |
GDB reads its input commands via the readline interface. This gnu library provides consistent behavior for programs which provide a command line interface to the user. Advantages are gnu Emacs-style or vi-style inline editing of commands, csh-like history substitution, and a storage and recall of command history across debugging sessions.
You may control the behavior of command line editing in GDB with the command set.
set editingset editing onEnable command line editing (enabled by default).
set editing offDisable command line editing.
show editingShow whether command line editing is enabled.
| © Free Software Foundation, Inc. |