From 3fb2c08e6d5ea04013c78a69eed50380d06fd97d Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Tue, 13 May 2014 23:04:28 +0200 Subject: [PATCH] miniview: add doc --- README | 1 + man/terminology.1 | 6 +++++- src/bin/options_keys.c | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README b/README index e67f40d8..4186d0fb 100644 --- a/README +++ b/README @@ -76,6 +76,7 @@ Ctrl+7 = switch to terminal tab 7 Ctrl+8 = switch to terminal tab 8 Ctrl+9 = switch to terminal tab 9 Ctrl+0 = switch to terminal tab 10 +Ctrl+Shift+h = toggle displaying the miniview of the history Command mode commands currently understood: diff --git a/man/terminology.1 b/man/terminology.1 index c4f3a76a..86822592 100644 --- a/man/terminology.1 +++ b/man/terminology.1 @@ -1,5 +1,5 @@ .\" Manpage for Terminology -.TH man 1 "08 Mar 2014" "0.5" "Terminology man page" +.TH man 1 "13 May 2014" "0.6" "Terminology man page" .SH NAME Terminology \- Terminal Emulator written with EFL (Enlightenment Foundation Libraries). .SH SYNOPSIS @@ -244,6 +244,10 @@ Scroll up or down in history. .TP .B Ctrl + Wheel Zoom font size up/down. +. +.TP +.B Ctrl+Shift+h +Toggle displaying the miniview of the history. .SH COMMAND MODE COMMANDS 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 e8fef8c2..8e16fa48 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) KB("Switch to terminal tab 9", "Ctrl + 9"); KB("Switch to terminal tab 10", "Ctrl + 0"); KB("Enter command mode", "Alt + Home"); + KB("Toggle miniview of the history", "Ctrl + Shift + h"); #undef KB }