Skip to content

Commit

Permalink
contrib(completions): fix completions for --stats-jsonl
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
rzmk committed Aug 20, 2024
1 parent 7353275 commit 73d8e7e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contrib/completions/examples/qsv.elv
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ set edit:completion:arg-completer[qsv] = {|@words|
cand --prefer-dmy 'prefer-dmy'
cand --force 'force'
cand --jobs 'jobs'
cand --stats-jsonl 'stats-binout'
cand --stats-jsonl 'stats-jsonl'
cand --cache-threshold 'cache-threshold'
cand --output 'output'
cand --no-headers 'no-headers'
Expand Down
2 changes: 1 addition & 1 deletion contrib/completions/examples/qsv.fish
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,7 @@ complete -c qsv -n "__fish_qsv_using_subcommand stats" -l infer-dates
complete -c qsv -n "__fish_qsv_using_subcommand stats" -l prefer-dmy
complete -c qsv -n "__fish_qsv_using_subcommand stats" -l force
complete -c qsv -n "__fish_qsv_using_subcommand stats" -l jobs
complete -c qsv -n "__fish_qsv_using_subcommand stats" -l stats-binout
complete -c qsv -n "__fish_qsv_using_subcommand stats" -l stats-jsonl
complete -c qsv -n "__fish_qsv_using_subcommand stats" -l cache-threshold
complete -c qsv -n "__fish_qsv_using_subcommand stats" -l output
complete -c qsv -n "__fish_qsv_using_subcommand stats" -l no-headers
Expand Down
2 changes: 1 addition & 1 deletion contrib/completions/examples/qsv.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -1013,7 +1013,7 @@ Register-ArgumentCompleter -Native -CommandName 'qsv' -ScriptBlock {
[CompletionResult]::new('--prefer-dmy', 'prefer-dmy', [CompletionResultType]::ParameterName, 'prefer-dmy')
[CompletionResult]::new('--force', 'force', [CompletionResultType]::ParameterName, 'force')
[CompletionResult]::new('--jobs', 'jobs', [CompletionResultType]::ParameterName, 'jobs')
[CompletionResult]::new('--stats-jsonl', 'stats-binout', [CompletionResultType]::ParameterName, 'stats-binout')
[CompletionResult]::new('--stats-jsonl', 'stats-jsonl', [CompletionResultType]::ParameterName, 'stats-jsonl')
[CompletionResult]::new('--cache-threshold', 'cache-threshold', [CompletionResultType]::ParameterName, 'cache-threshold')
[CompletionResult]::new('--output', 'output', [CompletionResultType]::ParameterName, 'output')
[CompletionResult]::new('--no-headers', 'no-headers', [CompletionResultType]::ParameterName, 'no-headers')
Expand Down
2 changes: 1 addition & 1 deletion contrib/completions/src/cmd/stats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub fn stats_cmd() -> Command {
arg!(--"prefer-dmy"),
arg!(--force),
arg!(--jobs),
arg!(--"stats-binout"),
arg!(--"stats-jsonl"),
arg!(--"cache-threshold"),
arg!(--output),
arg!(--"no-headers"),
Expand Down

0 comments on commit 73d8e7e

Please sign in to comment.