n | Create new
^R | Rename entry
s | Toggle sort by size
- S, ^S | Toggle du mode
+ S, ^J | Toggle du mode
t | Toggle sort by mtime
! | Spawn SHELL in dir
e | Edit entry in EDITOR
^L | Redraw, clear prompt
? | Help, settings
Q | Quit and cd
- q, ^Q | Quit
+ q, ^Y | Quit
```
Help & settings, file details, media info and archive listing are shown in the PAGER. Please use the PAGER-specific keys in these screens.
Rename selected entry
.It Ic s
Toggle sort by file size
-.It Ic S, ^S
+.It Ic S, ^J
Toggle disk usage analyzer mode
.It Ic t
Toggle sort by time modified
Toggle help and settings screen
.It Ic Q
Quit and change directory
-.It Ic q, ^Q
+.It Ic q, ^Y
Quit
.El
.Pp
case CONTROL('O'): // fallthrough
case CONTROL('B'): // fallthrough
case CONTROL('V'): // fallthrough
- case CONTROL('S'): // fallthrough
+ case CONTROL('J'): // fallthrough
case CONTROL('X'): // fallthrough
- case CONTROL('Q'):
+ case CONTROL('Y'):
goto end;
default:
/* Reset cur in case it's a repeat search */
"en | Create new\n"
"d^R | Rename entry\n"
"es | Toggle sort by size\n"
- "aS, ^S | Toggle du mode\n"
+ "aS, ^J | Toggle du mode\n"
"et | Toggle sort by mtime\n"
"e! | Spawn SHELL in dir\n"
"ee | Edit entry in EDITOR\n"
"d^L | Redraw, clear prompt\n"
"e? | Help, settings\n"
"eQ | Quit and cd\n"
- "aq, ^Q | Quit\n\n");
+ "aq, ^Y | Quit\n\n");
if (fd == -1)
return -1;
{ 's', SEL_FSIZE, "", "" },
/* Sort by total block count including dir contents */
{ 'S', SEL_BSIZE, "", "" },
- { CONTROL('S'), SEL_BSIZE, "", "" },
+ { CONTROL('J'), SEL_BSIZE, "", "" },
/* Toggle sort by time */
{ 't', SEL_MTIME, "", "" },
/* Redraw window */
{ 'Q', SEL_CDQUIT, "", "" },
/* Quit */
{ 'q', SEL_QUIT, "", "" },
- { CONTROL('Q'), SEL_QUIT, "", "" },
+ { CONTROL('Y'), SEL_QUIT, "", "" },
};