浏览代码

Show number of entries in detailed view

master
Arun Prakash Jana 8 年前
父节点
当前提交
3c94193992
找不到此签名对应的密钥 GPG 密钥 ID: A75979F35C080412
共有 2 个文件被更改,包括 6 次插入1 次删除
  1. +1
    -1
      README.md
  2. +5
    -0
      noice.c

+ 1
- 1
README.md 查看文件

@@ -44,7 +44,7 @@ I chose to fork noice because:
### Fork toppings

- Behaviour and navigation
- Optional detail view with file type and size (default: disabled)
- Detail view with file type, size and number of entries in dir (default: disabled)
- Case-insensitive alphabetic content listing instead of upper case first
- Roll over at the first and last entries of a directory (with Up/Down keys)
- Sort entries by file size (largest to smallest)


+ 5
- 0
noice.c 查看文件

@@ -616,6 +616,11 @@ redraw(char *path)
for (i = cur - nlines; i < cur + nlines + odd; i++)
printptr(&dents[i], i == cur);
}

if (showdetail) {
sprintf(cwd, "%d items", ndents);
printmsg(cwd);
}
}

void


正在加载...
取消
保存