You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: completions/_dust
+1
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,7 @@ _dust() {
45
45
'-y+[just like -mtime, but based on file change time]: : ' \
46
46
'--ctime=[just like -mtime, but based on file change time]: : ' \
47
47
'--files0-from=[run dust on NUL-terminated file names specified in file; if argument is -, then read names from standard input]: :_files' \
48
+
'*--collapse=[Keep these directories collapsed]: :_files' \
48
49
'-m+[Directory '\''size'\'' is max filetime of child files instead of disk size. while a/c/m for last accessed/changed/modified time]: :(a c m)' \
49
50
'--filetime=[Directory '\''size'\'' is max filetime of child files instead of disk size. while a/c/m for last accessed/changed/modified time]: :(a c m)' \
50
51
'-p[Subdirectories will not have their path shortened]' \
[CompletionResult]::new('-y','y', [CompletionResultType]::ParameterName,'just like -mtime, but based on file change time')
52
52
[CompletionResult]::new('--ctime','ctime', [CompletionResultType]::ParameterName,'just like -mtime, but based on file change time')
53
53
[CompletionResult]::new('--files0-from','files0-from', [CompletionResultType]::ParameterName,'run dust on NUL-terminated file names specified in file; if argument is -, then read names from standard input')
54
+
[CompletionResult]::new('--collapse','collapse', [CompletionResultType]::ParameterName,'Keep these directories collapsed')
54
55
[CompletionResult]::new('-m','m', [CompletionResultType]::ParameterName,'Directory ''size'' is max filetime of child files instead of disk size. while a/c/m for last accessed/changed/modified time')
55
56
[CompletionResult]::new('--filetime','filetime', [CompletionResultType]::ParameterName,'Directory ''size'' is max filetime of child files instead of disk size. while a/c/m for last accessed/changed/modified time')
56
57
[CompletionResult]::new('-p','p', [CompletionResultType]::ParameterName,'Subdirectories will not have their path shortened')
Copy file name to clipboardexpand all lines: completions/dust.fish
+1
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,7 @@ complete -c dust -s M -l mtime -d '+/-n matches files modified more/less than n
14
14
complete-c dust -s A -l atime -d'just like -mtime, but based on file access time'-r
15
15
complete-c dust -s y -l ctime -d'just like -mtime, but based on file change time'-r
16
16
complete-c dust -l files0-from -d'run dust on NUL-terminated file names specified in file; if argument is -, then read names from standard input'-r-F
17
+
complete-c dust -l collapse -d'Keep these directories collapsed'-r-F
17
18
complete-c dust -s m -l filetime -d'Directory \'size\' is max filetime of child files instead of disk size. while a/c/m for last accessed/changed/modified time'-r-f-a"{a\t'',c\t'',m\t''}"
18
19
complete-c dust -s p -l full-paths -d'Subdirectories will not have their path shortened'
19
20
complete-c dust -s L -l dereference-links -d'dereference sym links - Treat sym links as directories and go into them'
0 commit comments