commit 2425c3392e1d9c61ac7b87c4babcd9a0d384e3c3
parent d4a647803cc05e8f81c14e15347c908c8c856b5c
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Mon, 13 Jul 2020 22:06:49 +0200
remove 'r' keybind for redraw
Diffstat:
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/sfeed_curses.1 b/sfeed_curses.1
@@ -66,7 +66,7 @@ Prompt for new search and search backward.
Search forward with the previous input search term.
.It N
Search backward with the previous input search term.
-.It r, ^L
+.It ^L
Redraw screen.
.It R
Reload all feed files as specified on startup when not read from stdin.
diff --git a/sfeed_curses.c b/sfeed_curses.c
@@ -1631,8 +1631,7 @@ nextpage:
}
}
break;
- case 12: /* ^L */
- case 'r': /* update window dimensions and redraw */
+ case 12: /* ^L, redraw */
alldirty();
break;
case 'R': /* reload all files */