diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2020-01-18 19:55:09 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2020-01-18 19:55:09 +0530 |
commit | 9b054d51f4e3f87e2a606bc010408c32ec3f2c9b (patch) | |
tree | 7be586f61675f98ccb5e2ef6debfaee188a8b058 /src/nnn.c | |
parent | afb7efc860a50d683c8c3df36126b664caff9300 (diff) | |
download | nnn-9b054d51f4e3f87e2a606bc010408c32ec3f2c9b.tar.gz |
Key F5 toggle hidden
Diffstat (limited to 'src/nnn.c')
-rw-r--r-- | src/nnn.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3630,7 +3630,7 @@ static void show_help(const char *path) "9Dn j Down%-14cPgDn ^D Scroll down\n" "9Lt h Parent%-12c~ ` @ - HOME, /, start, last\n" "5Ret Rt l Open%-20c' First file\n" - "9g ^A Top%-21c. Toggle hidden\n" + "9g ^A Top%-18c. F5 Toggle hidden\n" "9G ^E End%-21c0 Lock terminal\n" "9b ^/ Bookmark key%-12c, Pin CWD\n" "a1-4 Context 1-4%-8c(B)Tab Cycle context\n" @@ -4970,7 +4970,7 @@ nochange: } goto nochange; case SEL_MFLTR: // fallthrough - case SEL_TOGGLEDOT: // fallthrough + case SEL_HIDDEN: // fallthrough case SEL_DETAIL: // fallthrough case SEL_SORT: switch (sel) { @@ -4985,7 +4985,7 @@ nochange: /* Start watching the directory */ dir_changed = TRUE; break; - case SEL_TOGGLEDOT: + case SEL_HIDDEN: cfg.showhidden ^= 1; if (ndents) copycurname(); |