mirror of
https://code.blicky.net/yorhel/ncdu.git
synced 2026-01-12 17:08:39 -09:00
Fixed version in ncdu.1, and filenames ending with a tilde are now also hidden with the 'h'-key
git-svn-id: svn://blicky.net/ncdu/trunk@24 ce56bc8d-f834-0410-b703-f827bd498a76
This commit is contained in:
parent
2533cb196d
commit
70f7adecda
2 changed files with 2 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
." Text automatically generated by txt2man
|
||||
.TH NCDU 1 "July 21, 2007" "ncdu-1.2" "ncdu manual"
|
||||
.TH NCDU 1 "July 21, 2007" "ncdu-svn" "ncdu manual"
|
||||
.SH NAME
|
||||
\fBncdu \fP- NCurses Disk Usage
|
||||
.SH SYNOPSIS
|
||||
|
|
|
|||
|
|
@ -145,7 +145,7 @@ char *graph(off_t max, off_t size) {
|
|||
|
||||
|
||||
#define exlhid(x) if(bflags & BF_HIDE && (\
|
||||
(!(x->flags & FF_PAR) && x->name[0] == '.')\
|
||||
(!(x->flags & FF_PAR) && (x->name[0] == '.' || x->name[strlen(x->name)-1] == '~'))\
|
||||
|| x->flags & FF_EXL)\
|
||||
) { i--; continue; }
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue