diff options
author | 2019-09-12 08:30:12 +0530 | |
---|---|---|
committer | 2019-09-12 08:30:12 +0530 | |
commit | e4c14ee13cf7cbf8d80129aa55e97e1fd85940e6 (patch) | |
tree | 154cb3af3a395fe9e58b3517d18a685979b6af23 /src | |
parent | 684a90a0fbe89ba2039685e25dacefe94e03dea6 (diff) | |
download | nnn-e4c14ee13cf7cbf8d80129aa55e97e1fd85940e6.tar.gz |
Shortcut mapping: S for du, A for apparent du
Diffstat (limited to 'src')
-rw-r--r-- | src/nnn.c | 2 | ||||
-rw-r--r-- | src/nnn.h | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -2786,7 +2786,7 @@ static bool show_help(const char *path) "b^F Extract archive F List archive\n" "ce Edit in EDITOR p Open in PAGER\n" "1ORDER TOGGLES\n" - "b^J du S Apparent du\n" + "cS du A Apparent du\n" "cs Size E Extn t Time modified\n" "1MISC\n" "9! ^] Shell ^N Note L Lock \n" @@ -185,9 +185,9 @@ static struct key bindings[] = { /* Toggle sort by size */ { 's', SEL_FSIZE }, /* Sort by apparent size including dir contents */ - { 'S', SEL_ASIZE }, + { 'A', SEL_ASIZE }, /* Sort by total block count including dir contents */ - { CONTROL('J'), SEL_BSIZE }, + { 'S', SEL_BSIZE }, /* Sort by file extension */ { 'E', SEL_EXTN }, /* Toggle sort by time */ |