From fabf9fd47b2aa78768a31fe184d8672fe2d8b84d Mon Sep 17 00:00:00 2001 From: Arun Prakash Jana Date: Mon, 15 Jul 2019 01:42:12 +0530 Subject: [PATCH] Compact notation for time/size sort order --- src/nnn.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/nnn.c b/src/nnn.c index b4dc9ffb..6ae1b82c 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -3178,15 +3178,12 @@ static void redraw(char *path) if (cfg.showdetail) { if (ndents) { - char sort[] = "\0y time "; + char sort[] = "\0 "; if (cfg.mtimeorder) - sort[0] = 'b'; - else if (cfg.sizeorder) { - sort[0] = 'b'; - sort[3] = 's'; - sort[5] = 'z'; - } + sort[0] = 'T'; + else if (cfg.sizeorder) + sort[0] = 'S'; /* We need to show filename as it may be truncated in directory listing */ if (!cfg.blkorder)