diff --git a/completion/_dotdrop-completion.zsh b/completion/_dotdrop-completion.zsh index 1303ec8..62fdf58 100644 --- a/completion/_dotdrop-completion.zsh +++ b/completion/_dotdrop-completion.zsh @@ -39,9 +39,9 @@ _dotdrop () 'compare[\[-Vb\] \[-c \] \[-p \]]' 'update[\[-VbfdkP\] \[-c \] \[-p \]]' 'remove[\[-Vbfdk\] \[-c \] \[-p \] \[...\]]' - 'files[\[-VbT\] \[-c \] \[-p \]]' + 'files[\[-VbTG\] \[-c \] \[-p \]]' 'detail[\[-Vb\] \[-c \] \[-p \] \[...\]]' - 'profiles[\[-Vb\] \[-c \]]' + 'profiles[\[-VbG\] \[-c \]]' ) _values 'dotdrop' $subcommands ;; @@ -157,8 +157,6 @@ _dotdrop-compare () '(--cfg=-)--cfg=-' \ '(-p=-)-p=-' \ '(--profile=-)--profile=-' \ - '(-o=-)-o=-' \ - '(--dopts=-)--dopts=-' \ '(-C=-)-C=-' \ '(--file=-)--file=-' \ '(-i=-)-i=-' \ @@ -241,6 +239,8 @@ _dotdrop-files () '(--no-banner)--no-banner' \ '(-T)-T' \ '(--template)--template' \ + '(-G)-G' \ + '(--grepable)--grepable' \ '(-c=-)-c=-' \ '(--cfg=-)--cfg=-' \ '(-p=-)-p=-' \ @@ -282,6 +282,8 @@ _dotdrop-profiles () '(--verbose)--verbose' \ '(-b)-b' \ '(--no-banner)--no-banner' \ + '(-G)-G' \ + '(--grepable)--grepable' \ '(-c=-)-c=-' \ '(--cfg=-)--cfg=-' \ diff --git a/completion/_dotdrop.sh-completion.zsh b/completion/_dotdrop.sh-completion.zsh index 1396d9e..006086b 100644 --- a/completion/_dotdrop.sh-completion.zsh +++ b/completion/_dotdrop.sh-completion.zsh @@ -157,8 +157,6 @@ _dotdrop.sh-compare () '(--cfg=-)--cfg=-' \ '(-p=-)-p=-' \ '(--profile=-)--profile=-' \ - '(-o=-)-o=-' \ - '(--dopts=-)--dopts=-' \ '(-C=-)-C=-' \ '(--file=-)--file=-' \ '(-i=-)-i=-' \ @@ -241,6 +239,8 @@ _dotdrop.sh-files () '(--no-banner)--no-banner' \ '(-T)-T' \ '(--template)--template' \ + '(-G)-G' \ + '(--grepable)--grepable' \ '(-c=-)-c=-' \ '(--cfg=-)--cfg=-' \ '(-p=-)-p=-' \ @@ -282,6 +282,8 @@ _dotdrop.sh-profiles () '(--verbose)--verbose' \ '(-b)-b' \ '(--no-banner)--no-banner' \ + '(-G)-G' \ + '(--grepable)--grepable' \ '(-c=-)-c=-' \ '(--cfg=-)--cfg=-' \ diff --git a/completion/dotdrop-completion.bash b/completion/dotdrop-completion.bash index 8e9f2df..2ac0e0f 100644 --- a/completion/dotdrop-completion.bash +++ b/completion/dotdrop-completion.bash @@ -63,7 +63,7 @@ _dotdrop_compare() cur="${COMP_WORDS[COMP_CWORD]}" if [ $COMP_CWORD -ge 2 ]; then - COMPREPLY=( $( compgen -W '-V --verbose -b --no-banner -c= --cfg= -p= --profile= -o= --dopts= -C= --file= -i= --ignore= ' -- $cur) ) + COMPREPLY=( $( compgen -W '-V --verbose -b --no-banner -c= --cfg= -p= --profile= -C= --file= -i= --ignore= ' -- $cur) ) fi } @@ -93,7 +93,7 @@ _dotdrop_files() cur="${COMP_WORDS[COMP_CWORD]}" if [ $COMP_CWORD -ge 2 ]; then - COMPREPLY=( $( compgen -W '-V --verbose -b --no-banner -T --template -c= --cfg= -p= --profile= ' -- $cur) ) + COMPREPLY=( $( compgen -W '-V --verbose -b --no-banner -T --template -G --grepable -c= --cfg= -p= --profile= ' -- $cur) ) fi } @@ -113,7 +113,7 @@ _dotdrop_profiles() cur="${COMP_WORDS[COMP_CWORD]}" if [ $COMP_CWORD -ge 2 ]; then - COMPREPLY=( $( compgen -W '-V --verbose -b --no-banner -c= --cfg= ' -- $cur) ) + COMPREPLY=( $( compgen -W '-V --verbose -b --no-banner -G --grepable -c= --cfg= ' -- $cur) ) fi } diff --git a/completion/dotdrop.sh-completion.bash b/completion/dotdrop.sh-completion.bash index 76b7796..6ccff8c 100644 --- a/completion/dotdrop.sh-completion.bash +++ b/completion/dotdrop.sh-completion.bash @@ -63,7 +63,7 @@ _dotdropsh_compare() cur="${COMP_WORDS[COMP_CWORD]}" if [ $COMP_CWORD -ge 2 ]; then - COMPREPLY=( $( compgen -W '-V --verbose -b --no-banner -c= --cfg= -p= --profile= -o= --dopts= -C= --file= -i= --ignore= ' -- $cur) ) + COMPREPLY=( $( compgen -W '-V --verbose -b --no-banner -c= --cfg= -p= --profile= -C= --file= -i= --ignore= ' -- $cur) ) fi } @@ -93,7 +93,7 @@ _dotdropsh_files() cur="${COMP_WORDS[COMP_CWORD]}" if [ $COMP_CWORD -ge 2 ]; then - COMPREPLY=( $( compgen -W '-V --verbose -b --no-banner -T --template -c= --cfg= -p= --profile= ' -- $cur) ) + COMPREPLY=( $( compgen -W '-V --verbose -b --no-banner -T --template -G --grepable -c= --cfg= -p= --profile= ' -- $cur) ) fi } @@ -113,7 +113,7 @@ _dotdropsh_profiles() cur="${COMP_WORDS[COMP_CWORD]}" if [ $COMP_CWORD -ge 2 ]; then - COMPREPLY=( $( compgen -W '-V --verbose -b --no-banner -c= --cfg= ' -- $cur) ) + COMPREPLY=( $( compgen -W '-V --verbose -b --no-banner -G --grepable -c= --cfg= ' -- $cur) ) fi }