summaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rw-r--r--contrib/bash_completion.in16
1 files changed, 16 insertions, 0 deletions
diff --git a/contrib/bash_completion.in b/contrib/bash_completion.in
index ef04d5e1..78bde21d 100644
--- a/contrib/bash_completion.in
+++ b/contrib/bash_completion.in
@@ -27,6 +27,21 @@ _arch_incomp() {
local r="\s-(-${1#* }\s|\w*${1% *})"; [[ $COMP_LINE =~ $r ]]
}
+_pacman_key() {
+ local cur opts prev
+ COMPREPLY=()
+ _get_comp_words_by_ref cur prev
+ if [[ $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
+}
+
_makepkg() {
local cur opts prev
COMPREPLY=()
@@ -109,5 +124,6 @@ else
fi
complete -F _makepkg -o default makepkg
+complete -F _pacman_key -o default pacman-key
# ex:et ts=2 sw=2 ft=sh