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: exports/completion.fish
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,11 +12,11 @@ complete -c pdu -l threads -d 'Set the maximum number of threads to spawn. Could
12
12
complete-c pdu -l json-input -d'Read JSON data from stdin'
13
13
complete-c pdu -l json-output -d'Print JSON data instead of an ASCII chart'
14
14
complete-c pdu -s H -l deduplicate-hardlinks -l detect-links -l dedupe-links -d'Detect and subtract the sizes of hardlinks from their parent directory totals'
15
+
complete-c pdu -s x -l one-file-system -d'Skip directories on different filesystems'
15
16
complete-c pdu -l top-down -d'Print the tree top-down instead of bottom-up'
16
17
complete-c pdu -l align-right -d'Set the root of the bars to the right'
17
18
complete-c pdu -l no-sort-d'Do not sort the branches in the tree'
18
19
complete-c pdu -s s -l silent-errors -l no-errors -d'Prevent filesystem error messages from appearing in stderr'
19
-
complete-c pdu -s x -l one-file-system -d'Skip directories on different filesystems'
20
20
complete-c pdu -s p -l progress -d'Report progress being made at the expense of performance'
21
21
complete-c pdu -l omit-json-shared-details -d'Do not output `.shared.details` in the JSON output'
22
22
complete-c pdu -l omit-json-shared-summary -d'Do not output `.shared.summary` in the JSON output'
[CompletionResult]::new('--deduplicate-hardlinks','--deduplicate-hardlinks', [CompletionResultType]::ParameterName,'Detect and subtract the sizes of hardlinks from their parent directory totals')
42
42
[CompletionResult]::new('--detect-links','--detect-links', [CompletionResultType]::ParameterName,'Detect and subtract the sizes of hardlinks from their parent directory totals')
43
43
[CompletionResult]::new('--dedupe-links','--dedupe-links', [CompletionResultType]::ParameterName,'Detect and subtract the sizes of hardlinks from their parent directory totals')
44
+
[CompletionResult]::new('-x','-x', [CompletionResultType]::ParameterName,'Skip directories on different filesystems')
45
+
[CompletionResult]::new('--one-file-system','--one-file-system', [CompletionResultType]::ParameterName,'Skip directories on different filesystems')
44
46
[CompletionResult]::new('--top-down','--top-down', [CompletionResultType]::ParameterName,'Print the tree top-down instead of bottom-up')
45
47
[CompletionResult]::new('--align-right','--align-right', [CompletionResultType]::ParameterName,'Set the root of the bars to the right')
46
48
[CompletionResult]::new('--no-sort','--no-sort', [CompletionResultType]::ParameterName,'Do not sort the branches in the tree')
47
49
[CompletionResult]::new('-s','-s', [CompletionResultType]::ParameterName,'Prevent filesystem error messages from appearing in stderr')
48
50
[CompletionResult]::new('--silent-errors','--silent-errors', [CompletionResultType]::ParameterName,'Prevent filesystem error messages from appearing in stderr')
49
51
[CompletionResult]::new('--no-errors','--no-errors', [CompletionResultType]::ParameterName,'Prevent filesystem error messages from appearing in stderr')
50
-
[CompletionResult]::new('-x','-x', [CompletionResultType]::ParameterName,'Skip directories on different filesystems')
51
-
[CompletionResult]::new('--one-file-system','--one-file-system', [CompletionResultType]::ParameterName,'Skip directories on different filesystems')
52
52
[CompletionResult]::new('-p','-p', [CompletionResultType]::ParameterName,'Report progress being made at the expense of performance')
53
53
[CompletionResult]::new('--progress','--progress', [CompletionResultType]::ParameterName,'Report progress being made at the expense of performance')
54
54
[CompletionResult]::new('--omit-json-shared-details','--omit-json-shared-details', [CompletionResultType]::ParameterName,'Do not output `.shared.details` in the JSON output')
0 commit comments