summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArun Prakash Jana <engineerarun@gmail.com>2020-05-31 23:20:08 +0530
committerArun Prakash Jana <engineerarun@gmail.com>2020-05-31 23:20:08 +0530
commit8549121d86c62406fa5326a3c091d745315cff8b (patch)
tree61d3e477a52808cbf5fe286236b49eb554a1aff2
parent7263a5f89b9eb16a7dceba5a4913b7c2eba803b4 (diff)
Remove redundant key F5
-rw-r--r--src/nnn.c12
-rw-r--r--src/nnn.h1
2 files changed, 3 insertions, 10 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 3fe3badd..af3f4fe0 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -2569,23 +2569,18 @@ static int filterentries(char *path, char *lastname)
} else
continue;
// fallthrough
- case KEY_F(5): // fallthrough
case CONTROL('L'):
- if (*ch == CONTROL('L') || *ch == KEY_F(5)) {
+ if (*ch == CONTROL('L')) {
if (wln[1]) {
ln[REGEX_MAX - 1] = ln[1];
ln[1] = wln[1] = '\0';
len = 1;
ndents = total;
- } else if (*ch == CONTROL('L') && ln[REGEX_MAX - 1]) {
- /* Show the previous filter */
+ } else if (ln[REGEX_MAX - 1]) { /* Show the previous filter */
ln[1] = ln[REGEX_MAX - 1];
ln[REGEX_MAX - 1] = '\0';
len = mbstowcs(wln, ln, REGEX_MAX);
}
-
- if (*ch == KEY_F(5))
- goto end;
}
/* Go to the top, we don't know if the hovered file will match the filter */
@@ -4141,7 +4136,6 @@ static void show_help(const char *path)
"a1-4 Context 1-4%-7c(Sh)Tab Cycle context\n"
"c/ Filter%-17c^N Toggle type-to-nav\n"
"aEsc Exit prompt%-12c^L Redraw/clear prompt\n"
- "c0 Lock%-19cF5 Redraw\n"
"c? Help, conf%-13c^G QuitCD\n"
"cq Quit context%-7c^Q (Q) Quit (with err)\n"
"1FILES\n"
@@ -4159,7 +4153,7 @@ static void show_help(const char *path)
"9! ^] Shell%-19c] Cmd prompt\n"
"cc Connect remote%-10cu Unmount\n"
"9t ^T Sort toggles%-12cs Manage session\n"
- "cT Set time type%-0c\n"
+ "cT Set time type%-11c0 Lock\n"
};
fd = create_tmp_file();
diff --git a/src/nnn.h b/src/nnn.h
index 81e5c1a8..a403f297 100644
--- a/src/nnn.h
+++ b/src/nnn.h
@@ -199,7 +199,6 @@ static struct key bindings[] = {
{ CONTROL('T'), SEL_SORT },
/* Redraw window */
{ CONTROL('L'), SEL_REDRAW },
- { KEY_F(5), SEL_REDRAW },
/* Select current file path */
{ CONTROL('J'), SEL_SEL },
{ ' ', SEL_SEL },