commit 26c535c058dd581475692b847bd19dde1bdd906f
parent 2f7d19fadd703f32a7a96555cea17c29ceb846e3
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Sat, 29 May 2021 18:08:22 +0200
Fix space to go to the next slide as intended and documented
Keybind introduced in commit b455270d
Signed-off-by: Christoph Lohmann <20h@r-36.net>
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/catpoint.c b/catpoint.c
@@ -174,6 +174,7 @@ again:
case 'q':
break;
/* next */
+ case ' ':
case 'l':
case 'j':
case KEY_RIGHT:
@@ -186,7 +187,6 @@ again:
}
goto again;
/* prev */
- case ' ':
case 'h':
case 'k':
case KEY_LEFT: