Skip to content

Commit

Permalink
contrib(bashly): update completions.bash
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
rzmk authored Apr 8, 2024
1 parent 5f074ad commit ebf16d8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion contrib/bashly/completions.bash
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ _qsv_completions() {
while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -A file -W "$(_qsv_completions_filter "--flexible --help --human-readable --low-memory --no-headers --no-polars --width -h")" -- "$cur" )
;;

'slice'*)
while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -A file -W "$(_qsv_completions_filter "--delimiter --end --help --index --json --len --no-headers --output --start -h")" -- "$cur" )
;;

'stats'*)
while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -A file -W "$(_qsv_completions_filter "--cardinality --dates-whitelist --delimiter --everything --force --help --infer-boolean --infer-dates --jobs --mad --median --memcheck --mode --no-headers --nulls --output --prefer-dmy --quartiles --round --select --stats-binout --typesonly -h")" -- "$cur" )
;;
Expand All @@ -45,7 +49,7 @@ _qsv_completions() {
;;

*)
while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -W "$(_qsv_completions_filter "--help --version -h -v count frequency sqlp stats")" -- "$cur" )
while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -W "$(_qsv_completions_filter "--help --version -h -v count frequency slice sqlp stats")" -- "$cur" )
;;

esac
Expand Down

0 comments on commit ebf16d8

Please sign in to comment.