From c571bd7afbbe05449558d861a6ec82c559771739 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Tue, 27 Mar 2012 19:29:48 -0500 Subject: bash_completion: complete pacman-key options right away pacman-key requires at least one dashed option, so complete them right away, rather than falling back to default completion. Signed-off-by: Dan McGee --- contrib/bash_completion.in | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'contrib') diff --git a/contrib/bash_completion.in b/contrib/bash_completion.in index be2406dc..95a27702 100644 --- a/contrib/bash_completion.in +++ b/contrib/bash_completion.in @@ -31,12 +31,14 @@ _pacman_key() { local cur opts prev COMPREPLY=() _get_comp_words_by_ref cur prev - if [[ $cur = -* && + opts=('add delete export finger help list-keys recv-keys updatedb verify + version config edit-key gpgdir import import-trustdb init keyserver + list-sigs lsign-key populate refresh-keys' + 'a d e f h l r u v V') + if [[ $prev = 'pacman-key' ]]; then + _arch_ptr2comp opts + elif [[ $cur = -* && $prev != -@(a|-add|c|-config|g|-gpgdir|h|-help|import?(-trustdb)) ]]; then - opts=('add delete export finger help list-keys recv-keys updatedb verify version - config edit-key gpgdir import import-trustdb init keyserver list-sigs - lsign-key populate refresh-keys' - 'a d e f h l r u v V') _arch_ptr2comp opts fi true -- cgit v1.2.3