commit 66490018975f58ff44e23e8c7bd7983ea826b414
parent f8ddb22040652532551d675178950b809bce615c
Author: Claudio Alessi <smoppy@gmail.com>
Date: Sat, 13 May 2017 20:34:42 +0200
Add 20-items scroll keys.
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/config.def.h b/config.def.h
@@ -29,5 +29,9 @@ static Key keys[] = {
{ NULL, KEY_UP, itempos, {.i = -1} },
{ NULL, 'j', itempos, {.i = +1} },
{ NULL, KEY_DOWN, itempos, {.i = +1} },
+ { NULL, CTRL('d'), itempos, {.i = +20} },
+ { NULL, KEY_NPAGE, itempos, {.i = +20} },
+ { NULL, CTRL('u'), itempos, {.i = -20} },
+ { NULL, KEY_PPAGE, itempos, {.i = -20} },
{ NULL, 'I', reload, {0} },
};