ソースを参照

Compact notation for time/size sort order

master
Arun Prakash Jana 5年前
コミット
fabf9fd47b
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: A75979F35C080412
1個のファイルの変更4行の追加7行の削除
  1. +4
    -7
      src/nnn.c

+ 4
- 7
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)


読み込み中…
キャンセル
保存