mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-22 07:48:50 -05:00
bash_completion: add completion for pacman-key
Signed-off-by: Dave Reisner <dreisner@archlinux.org> Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
parent
507b01b912
commit
d1fc3aec4c
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user