diff options
-rw-r--r-- | README | 1 | ||||
-rw-r--r-- | man/terminology.1 | 6 | ||||
-rw-r--r-- | src/bin/options_keys.c | 1 |
3 files changed, 7 insertions, 1 deletions
@@ -76,6 +76,7 @@ Ctrl+7 = switch to terminal tab 7 | |||
76 | Ctrl+8 = switch to terminal tab 8 | 76 | Ctrl+8 = switch to terminal tab 8 |
77 | Ctrl+9 = switch to terminal tab 9 | 77 | Ctrl+9 = switch to terminal tab 9 |
78 | Ctrl+0 = switch to terminal tab 10 | 78 | Ctrl+0 = switch to terminal tab 10 |
79 | Ctrl+Shift+h = toggle displaying the miniview of the history | ||
79 | 80 | ||
80 | Command mode commands currently understood: | 81 | Command mode commands currently understood: |
81 | 82 | ||
diff --git a/man/terminology.1 b/man/terminology.1 index c4f3a76..8682259 100644 --- a/man/terminology.1 +++ b/man/terminology.1 | |||
@@ -1,5 +1,5 @@ | |||
1 | .\" Manpage for Terminology | 1 | .\" Manpage for Terminology |
2 | .TH man 1 "08 Mar 2014" "0.5" "Terminology man page" | 2 | .TH man 1 "13 May 2014" "0.6" "Terminology man page" |
3 | .SH NAME | 3 | .SH NAME |
4 | Terminology \- Terminal Emulator written with EFL (Enlightenment Foundation Libraries). | 4 | Terminology \- Terminal Emulator written with EFL (Enlightenment Foundation Libraries). |
5 | .SH SYNOPSIS | 5 | .SH SYNOPSIS |
@@ -244,6 +244,10 @@ Scroll up or down in history. | |||
244 | .TP | 244 | .TP |
245 | .B Ctrl + Wheel | 245 | .B Ctrl + Wheel |
246 | Zoom font size up/down. | 246 | Zoom font size up/down. |
247 | . | ||
248 | .TP | ||
249 | .B Ctrl+Shift+h | ||
250 | Toggle displaying the miniview of the history. | ||
247 | 251 | ||
248 | .SH COMMAND MODE COMMANDS | 252 | .SH COMMAND MODE COMMANDS |
249 | To enter command mode in terminology press Alt+Home. Currently command mode | 253 | To enter command mode in terminology press Alt+Home. Currently command mode |
diff --git a/src/bin/options_keys.c b/src/bin/options_keys.c index e8fef8c..8e16fa4 100644 --- a/src/bin/options_keys.c +++ b/src/bin/options_keys.c | |||
@@ -58,5 +58,6 @@ options_keys(Evas_Object *opbox, Evas_Object *term EINA_UNUSED) | |||
58 | KB("Switch to terminal tab 9", "Ctrl + 9"); | 58 | KB("Switch to terminal tab 9", "Ctrl + 9"); |
59 | KB("Switch to terminal tab 10", "Ctrl + 0"); | 59 | KB("Switch to terminal tab 10", "Ctrl + 0"); |
60 | KB("Enter command mode", "Alt + Home"); | 60 | KB("Enter command mode", "Alt + Home"); |
61 | KB("Toggle miniview of the history", "Ctrl + Shift + h"); | ||
61 | #undef KB | 62 | #undef KB |
62 | } | 63 | } |