diff options
author | Magne Hov <mhov@undo.io> | 2023-12-13 11:45:49 +0000 |
---|---|---|
committer | Magne Hov <mhov@undo.io> | 2023-12-13 11:45:49 +0000 |
commit | 14a2449eee4654bee0686020e6eeb4e4f2a8f9ca (patch) | |
tree | 7e636fc5b5e69a53f8c1daee6d82a040b87cb176 /gdb/doc | |
parent | 8170efad364aa8e062cba3b722b81aca9eda8cf5 (diff) | |
download | gdb-14a2449eee4654bee0686020e6eeb4e4f2a8f9ca.zip gdb-14a2449eee4654bee0686020e6eeb4e4f2a8f9ca.tar.gz gdb-14a2449eee4654bee0686020e6eeb4e4f2a8f9ca.tar.bz2 |
[gdb/tui] add SingleKey bindings for reverse execution commands
The bindings for the reverse execution commands are the same letters
as the forward execution command, but with the opposite case. This way
one can simply hold down the Shift modifier key or tap the Caps Lock key
to change the direction of execution.
Reviewed-By: Eli Zaretskii <eliz@gnu.org>
Approved-By: Tom Tromey <tom@tromey.com>
Diffstat (limited to 'gdb/doc')
-rw-r--r-- | gdb/doc/gdb.texinfo | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gdb/doc/gdb.texinfo b/gdb/doc/gdb.texinfo index 6e4adf5..7a5d357 100644 --- a/gdb/doc/gdb.texinfo +++ b/gdb/doc/gdb.texinfo @@ -30481,6 +30481,10 @@ switch into this mode, where the following key bindings are used: @item c continue +@kindex C @r{(SingleKey TUI key)} +@item C +reverse-continue + @kindex d @r{(SingleKey TUI key)} @item d down @@ -30489,14 +30493,26 @@ down @item f finish +@kindex F @r{(SingleKey TUI key)} +@item F +reverse-finish + @kindex n @r{(SingleKey TUI key)} @item n next +@kindex N @r{(SingleKey TUI key)} +@item N +reverse-next + @kindex o @r{(SingleKey TUI key)} @item o nexti. The shortcut letter @samp{o} stands for ``step Over''. +@kindex O @r{(SingleKey TUI key)} +@item O +reverse-nexti + @kindex q @r{(SingleKey TUI key)} @item q exit the SingleKey mode. @@ -30509,10 +30525,18 @@ run @item s step +@kindex S @r{(SingleKey TUI key)} +@item S +reverse-step + @kindex i @r{(SingleKey TUI key)} @item i stepi. The shortcut letter @samp{i} stands for ``step Into''. +@kindex I @r{(SingleKey TUI key)} +@item I +reverse-stepi + @kindex u @r{(SingleKey TUI key)} @item u up |