Browse Source

Cycle time, size, clear order at sort prompt with ^T

master
Arun Prakash Jana 4 years ago
parent
commit
2f61b0910d
No known key found for this signature in database GPG Key ID: A75979F35C080412
1 changed files with 9 additions and 1 deletions
  1. +9
    -1
      src/nnn.c

+ 9
- 1
src/nnn.c View File

@@ -584,7 +584,7 @@ static const char * const messages[] = {
"plugin keys:", "plugin keys:",
"bookmark keys:", "bookmark keys:",
"invalid regex", "invalid regex",
"'a'u / 'd'u / 'e'xtn / 'r'ev / 's'ize / 't'ime / 'v'er / 'c'lear?",
"'a'u / 'd'u / 'e'xtn / 'r'ev / 's'ize / 't'ime / 'v'er / 'c'lr / '^T' (cycle)?",
"unmount failed! try lazy?", "unmount failed! try lazy?",
"first file (\')/char?", "first file (\')/char?",
"remove tmp file?", "remove tmp file?",
@@ -5348,6 +5348,14 @@ static int set_sort_flags(int r)


if (cfg.reverse) if (cfg.reverse)
entrycmpfn = &reventrycmp; entrycmpfn = &reventrycmp;
} else if ( r == CONTROL('T')) {
/* Cycling order: clear -> size -> time -> clear */
if (cfg.timeorder)
r = 's';
else if (cfg.sizeorder)
r = 'c';
else
r = 't';
} }


switch (r) { switch (r) {


Loading…
Cancel
Save