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
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
-
complete-c pdu -l bytes-format -d'How to display the numbers of bytes'-r-f-a"{plain'Display plain number of bytes without units',metric'Use metric scale, i.e. 1K = 1000B, 1M = 1000K, and so on',binary'Use binary scale, i.e. 1K = 1024B, 1M = 1024K, and so on'}"
2
-
complete-c pdu -l quantity -d'Aspect of the files/directories to be measured'-r-f-a"{apparent-size'Measure apparent sizes',block-size'Measure block sizes (block-count * 512B)',block-count'Count numbers of blocks'}"
1
+
complete-c pdu -l bytes-format -d'How to display the numbers of bytes'-r-f-a"{plain\t'Display plain number of bytes without units',metric\t'Use metric scale, i.e. 1K = 1000B, 1M = 1000K, and so on',binary\t'Use binary scale, i.e. 1K = 1024B, 1M = 1024K, and so on'}"
2
+
complete-c pdu -l quantity -d'Aspect of the files/directories to be measured'-r-f-a"{apparent-size\t'Measure apparent sizes',block-size\t'Measure block sizes (block-count * 512B)',block-count\t'Count numbers of blocks'}"
3
3
complete-c pdu -l max-depth -d'Maximum depth to display the data (must be greater than 0)'-r
4
4
complete-c pdu -l total-width -d'Width of the visualization'-r
5
5
complete-c pdu -l column-width -d'Maximum widths of the tree column and width of the bar column'-r
[CompletionResult]::new('--bytes-format','bytes-format', [CompletionResultType]::ParameterName,'How to display the numbers of bytes')
25
-
[CompletionResult]::new('--quantity','quantity', [CompletionResultType]::ParameterName,'Aspect of the files/directories to be measured')
26
-
[CompletionResult]::new('--max-depth','max-depth', [CompletionResultType]::ParameterName,'Maximum depth to display the data (must be greater than 0)')
27
-
[CompletionResult]::new('--total-width','total-width', [CompletionResultType]::ParameterName,'Width of the visualization')
28
-
[CompletionResult]::new('--column-width','column-width', [CompletionResultType]::ParameterName,'Maximum widths of the tree column and width of the bar column')
29
-
[CompletionResult]::new('--min-ratio','min-ratio', [CompletionResultType]::ParameterName,'Minimal size proportion required to appear')
30
-
[CompletionResult]::new('--json-input','json-input', [CompletionResultType]::ParameterName,'Read JSON data from stdin')
31
-
[CompletionResult]::new('--json-output','json-output', [CompletionResultType]::ParameterName,'Print JSON data instead of an ASCII chart')
32
-
[CompletionResult]::new('--top-down','top-down', [CompletionResultType]::ParameterName,'Print the tree top-down instead of bottom-up')
33
-
[CompletionResult]::new('--align-right','align-right', [CompletionResultType]::ParameterName,'Set the root of the bars to the right')
34
-
[CompletionResult]::new('--no-sort','no-sort', [CompletionResultType]::ParameterName,'Preserve order of entries')
35
-
[CompletionResult]::new('--silent-errors','silent-errors', [CompletionResultType]::ParameterName,'Prevent filesystem error messages from appearing in stderr')
36
-
[CompletionResult]::new('--progress','progress', [CompletionResultType]::ParameterName,'Report progress being made at the expense of performance')
37
-
[CompletionResult]::new('-h','h', [CompletionResultType]::ParameterName,'Print help (see more with ''--help'')')
38
-
[CompletionResult]::new('--help','help', [CompletionResultType]::ParameterName,'Print help (see more with ''--help'')')
[CompletionResult]::new('--bytes-format','--bytes-format', [CompletionResultType]::ParameterName,'How to display the numbers of bytes')
25
+
[CompletionResult]::new('--quantity','--quantity', [CompletionResultType]::ParameterName,'Aspect of the files/directories to be measured')
26
+
[CompletionResult]::new('--max-depth','--max-depth', [CompletionResultType]::ParameterName,'Maximum depth to display the data (must be greater than 0)')
27
+
[CompletionResult]::new('--total-width','--total-width', [CompletionResultType]::ParameterName,'Width of the visualization')
28
+
[CompletionResult]::new('--column-width','--column-width', [CompletionResultType]::ParameterName,'Maximum widths of the tree column and width of the bar column')
29
+
[CompletionResult]::new('--min-ratio','--min-ratio', [CompletionResultType]::ParameterName,'Minimal size proportion required to appear')
30
+
[CompletionResult]::new('--json-input','--json-input', [CompletionResultType]::ParameterName,'Read JSON data from stdin')
31
+
[CompletionResult]::new('--json-output','--json-output', [CompletionResultType]::ParameterName,'Print JSON data instead of an ASCII chart')
32
+
[CompletionResult]::new('--top-down','--top-down', [CompletionResultType]::ParameterName,'Print the tree top-down instead of bottom-up')
33
+
[CompletionResult]::new('--align-right','--align-right', [CompletionResultType]::ParameterName,'Set the root of the bars to the right')
34
+
[CompletionResult]::new('--no-sort','--no-sort', [CompletionResultType]::ParameterName,'Preserve order of entries')
35
+
[CompletionResult]::new('--silent-errors','--silent-errors', [CompletionResultType]::ParameterName,'Prevent filesystem error messages from appearing in stderr')
36
+
[CompletionResult]::new('--progress','--progress', [CompletionResultType]::ParameterName,'Report progress being made at the expense of performance')
37
+
[CompletionResult]::new('-h','-h', [CompletionResultType]::ParameterName,'Print help (see more with ''--help'')')
38
+
[CompletionResult]::new('--help','--help', [CompletionResultType]::ParameterName,'Print help (see more with ''--help'')')
0 commit comments