From e009649cb9f98a2c5549535ea7f2e0c5d4cd4ef1 Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Tue, 2 Apr 2019 23:00:11 +0200 Subject: [PATCH] update completion scripts --- completion/_dotdrop-completion.zsh | 4 ++-- completion/_dotdrop.sh-completion.zsh | 4 ++-- completion/dotdrop-completion.bash | 2 +- completion/dotdrop.sh-completion.bash | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) mode change 100644 => 100755 completion/dotdrop-completion.bash diff --git a/completion/_dotdrop-completion.zsh b/completion/_dotdrop-completion.zsh index 3965dd5..d70dbd8 100644 --- a/completion/_dotdrop-completion.zsh +++ b/completion/_dotdrop-completion.zsh @@ -119,14 +119,14 @@ _dotdrop-import () '(--verbose)--verbose' \ '(-b)-b' \ '(--no-banner)--no-banner' \ - '(-l)-l' \ - '(--inv-link)--inv-link' \ '(-d)-d' \ '(--dry)--dry' \ '(-c=-)-c=-' \ '(--cfg=-)--cfg=-' \ '(-p=-)-p=-' \ '(--profile=-)--profile=-' \ + '(-l=-)-l=-' \ + '(--link=-)--link=-' \ else myargs=('') diff --git a/completion/_dotdrop.sh-completion.zsh b/completion/_dotdrop.sh-completion.zsh index 7881285..bee9bb7 100644 --- a/completion/_dotdrop.sh-completion.zsh +++ b/completion/_dotdrop.sh-completion.zsh @@ -119,14 +119,14 @@ _dotdrop.sh-import () '(--verbose)--verbose' \ '(-b)-b' \ '(--no-banner)--no-banner' \ - '(-l)-l' \ - '(--inv-link)--inv-link' \ '(-d)-d' \ '(--dry)--dry' \ '(-c=-)-c=-' \ '(--cfg=-)--cfg=-' \ '(-p=-)-p=-' \ '(--profile=-)--profile=-' \ + '(-l=-)-l=-' \ + '(--link=-)--link=-' \ else myargs=('') diff --git a/completion/dotdrop-completion.bash b/completion/dotdrop-completion.bash old mode 100644 new mode 100755 index 2aab93e..ce4e511 --- a/completion/dotdrop-completion.bash +++ b/completion/dotdrop-completion.bash @@ -50,7 +50,7 @@ _dotdrop_import() cur="${COMP_WORDS[COMP_CWORD]}" if [ $COMP_CWORD -ge 2 ]; then - COMPREPLY=( $( compgen -fW '-V --verbose -b --no-banner -l --inv-link -d --dry -c= --cfg= -p= --profile= ' -- $cur) ) + COMPREPLY=( $( compgen -fW '-V --verbose -b --no-banner -d --dry -c= --cfg= -p= --profile= -l= --link= ' -- $cur) ) fi } diff --git a/completion/dotdrop.sh-completion.bash b/completion/dotdrop.sh-completion.bash index b849d09..5357e11 100644 --- a/completion/dotdrop.sh-completion.bash +++ b/completion/dotdrop.sh-completion.bash @@ -50,7 +50,7 @@ _dotdropsh_import() cur="${COMP_WORDS[COMP_CWORD]}" if [ $COMP_CWORD -ge 2 ]; then - COMPREPLY=( $( compgen -fW '-V --verbose -b --no-banner -l --inv-link -d --dry -c= --cfg= -p= --profile= ' -- $cur) ) + COMPREPLY=( $( compgen -fW '-V --verbose -b --no-banner -d --dry -c= --cfg= -p= --profile= -l= --link= ' -- $cur) ) fi }