aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nnn.c2
-rw-r--r--src/nnn.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 54a014a..aa681f9 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -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"
diff --git a/src/nnn.h b/src/nnn.h
index 2eead91..8c98b1e 100644
--- a/src/nnn.h
+++ b/src/nnn.h
@@ -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 */