From 93e2d73a872f4b66ac586103f6c2c83512fd65eb Mon Sep 17 00:00:00 2001 From: godfath3r Date: Sun, 17 Aug 2014 22:14:27 +0200 Subject: [PATCH] options_keys: update shift+Up/Down for -1/+1 line scroll Reviewers: billiob Differential Revision: https://phab.enlightenment.org/D1339 --- src/bin/options_keys.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bin/options_keys.c b/src/bin/options_keys.c index 08ef2c1a..741f7774 100644 --- a/src/bin/options_keys.c +++ b/src/bin/options_keys.c @@ -32,6 +32,8 @@ options_keys(Evas_Object *opbox, Evas_Object *term EINA_UNUSED) KB(_("Scroll one page up"), "Shift + PgUp"); KB(_("Scroll one page down"), "Shift + PgDn"); + KB(_("Scroll one line up"), "Shift + Up"); + KB(_("Scroll one line down"), "Shift + Down"); KB(_("Paste Clipboard (ctrl+v/c) selection"), "Shift + Insert"); KB(_("Paste Clipboard (ctrl+v/c) selection"), "Ctrl + Shift + v"); KB(_("Paste Primary (highlight) selection"), "Shift + Ctrl + Insert");