Shortcut mapping: S for du, A for apparent du

This commit is contained in:
Arun Prakash Jana 2019-09-12 08:30:12 +05:30
parent 684a90a0fb
commit e4c14ee13c
No known key found for this signature in database
GPG key ID: A75979F35C080412
3 changed files with 4 additions and 4 deletions

View file

@ -257,7 +257,7 @@ Press <kbd>?</kbd> in `nnn` to see the list anytime.
^F Extract archive F List archive
e Edit in EDITOR p Open in PAGER
ORDER TOGGLES
^J du S Apparent du
S du A Apparent du
s Size E Extn t Time modified
MISC
! ^] Shell ^N Note L Lock

View file

@ -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"

View file

@ -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 */