Skip to content

Commit

Permalink
contrib(bashly): remove --json from slice in 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 ebf16d8 commit a61b5e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/bashly/completions.bash
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ _qsv_completions() {
;;

'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" )
while read -r; do COMPREPLY+=( "$REPLY" ); done < <( compgen -A file -W "$(_qsv_completions_filter "--delimiter --end --help --index --len --no-headers --output --start -h")" -- "$cur" )
;;

'stats'*)
Expand Down

0 comments on commit a61b5e9

Please sign in to comment.