From a61b5e955fca57ff7a0fb808dd3b2ba1a88774c9 Mon Sep 17 00:00:00 2001 From: Mueez Khan <30333942+rzmk@users.noreply.github.com> Date: Mon, 8 Apr 2024 13:11:45 -0400 Subject: [PATCH] contrib(bashly): remove --json from slice in completions.bash [skip ci] --- contrib/bashly/completions.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/bashly/completions.bash b/contrib/bashly/completions.bash index 37e8150d8..346aceff9 100644 --- a/contrib/bashly/completions.bash +++ b/contrib/bashly/completions.bash @@ -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'*)