From 940bdf8d4ad8c65c635ae69adaa1d258bd79e646 Mon Sep 17 00:00:00 2001
From: thrust26
Date: Mon, 21 Dec 2020 12:05:46 +0100
Subject: [PATCH] minor hotkey updates to debugger doc
---
docs/debugger.html | 54 +++++++++++++++++++++++-----------------------
1 file changed, 27 insertions(+), 27 deletions(-)
diff --git a/docs/debugger.html b/docs/debugger.html
index bc0329c0f..689e5d958 100644
--- a/docs/debugger.html
+++ b/docs/debugger.html
@@ -223,7 +223,7 @@ present in the debugger):
For space reasons, the Prompt, TIA, I/O and Audio displays are split into
4 tabs, only one of which is visible at a time. You can use the mouse or
keyboard to select which tab you want to view. Control/Cmd + Tab cycles between
-tabs from left-to-right, Shift + Control/Cmd + Tab cycles right-to-left.
+tabs from left-to-right, Shift-Control/Cmd + Tab cycles right-to-left.
Pressing Tab (or Shift + Tab) cycles between widgets in the current tab (except
for in the Prompt Tab, where 'tab' is used for something else).
@@ -339,7 +339,7 @@ previous rewind operation. The rewind buffer is 100 levels deep by default, the
size can be configured e.g. in the
Developer Settings - Time Machine dialog.
-
The other operations are Step, Trace, Scan+1, Frame+1 and Run.
+The other operations are Step, Trace, Scan +1, Frame +1 and Run.
You can also use the buttons from anywhere in the GUI via hotkeys.
@@ -349,48 +349,48 @@ size can be configured e.g. in the
Function |
- Control-s |
+ Control + S |
Step |
- Control-t |
+ Control + T |
Trace |
- Control-L |
- Scan+1 |
+ Control + L |
+ Scan +1 |
- Control-f |
- Frame+1 |
+ Control + F |
+ Frame +1 |
- Alt-Left arrow |
+ Alt + Left arrow |
Rewind 1 |
- Shift-Alt-Left arrow |
+ Shift-Alt + Left arrow |
Rewind 10 |
- Alt-Down arrow |
+ Alt + Down arrow |
Rewind all |
- Alt-Right arrow |
+ Alt + Right arrow |
Unwind 1 |
- Shift-Alt-Right arrow |
+ Shift-Alt + Right arrow |
Unwind 10 |
- Alt-Up arrow |
+ Alt + Up arrow |
Unwind all |
Backquote (`) |
- Run |
+ Run, exits debugger |
@@ -433,18 +433,18 @@ Bash-style commands are also supported:
End | Move cursor to end of line |
Delete | Remove character to right of cursor |
Backspace | Remove character to left of cursor |
- Control-a | Same function as 'Home' |
- Control-e | Same function as 'End' |
- Control-d | Same function as 'Delete' |
- Control-k | Remove all characters from cursor to end of line |
- Control-u | Remove all characters from cursor to beginning of line |
- Control-w | Remove entire word to left of cursor |
- Shift-PgUp | Scroll up through previous commands one screen/page |
- Shift-PgDown | Scroll down through previous commands one screen/page |
- Shift-Up | Scroll up through previous commands one line |
- Shift-Down | Scroll down through previous commands one line |
- Shift-Home | Scroll to beginning of commands |
- Shift-End | Scroll to end of commands |
+ Control + A | Same function as 'Home' |
+ Control + E | Same function as 'End' |
+ Control + D | Same function as 'Delete' |
+ Control + K | Remove all characters from cursor to end of line |
+ Control + U | Remove all characters from cursor to beginning of line |
+ Control + W | Remove entire word to left of cursor |
+ Shift + PgUp | Scroll up through previous commands one screen/page |
+ Shift + PgDown | Scroll down through previous commands one screen/page |
+ Shift + Up | Scroll up through previous commands one line |
+ Shift + Down | Scroll down through previous commands one line |
+ Shift + Home | Scroll to beginning of commands |
+ Shift + End | Scroll to end of commands |
You can also scroll with the mouse. Copy and paste is not yet supported.