diff options
author | Florian Pritz <bluewind@xinu.at> | 2014-11-05 09:24:35 +0100 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2014-11-09 13:46:23 +1000 |
commit | f77933ea1e45638d518206c839315d3feece2c01 (patch) | |
tree | 783fba757caecc5bc73346850ab3ae279e86e3c5 /contrib | |
parent | 9594f513a46220b12f515201dd3b034a7c648992 (diff) | |
download | pacman-f77933ea1e45638d518206c839315d3feece2c01.tar.xz |
Add --assume-installed to shell completion
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/bash_completion.in | 6 | ||||
-rw-r--r-- | contrib/zsh_completion.in | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/contrib/bash_completion.in b/contrib/bash_completion.in index 9b4bc38f..15e1daca 100644 --- a/contrib/bash_completion.in +++ b/contrib/bash_completion.in @@ -102,11 +102,11 @@ _pacman() { database=('asdeps asexplicit') query=('changelog check deps explicit file foreign groups info list owns search unrequired upgrades' 'c e g i k l m o p s t u') - remove=('cascade dbonly nodeps nosave print recursive unneeded' 'c n p s u') + remove=('cascade dbonly nodeps assume-installed nosave print recursive unneeded' 'c n p s u') sync=('asdeps asexplicit clean dbonly downloadonly force groups ignore ignoregroup - info list needed nodeps print refresh recursive search sysupgrade' + info list needed nodeps assume-installed print refresh recursive search sysupgrade' 'c g i l p s u w y') - upgrade=('asdeps asexplicit force needed nodeps print recursive' 'p') + upgrade=('asdeps asexplicit force needed nodeps assume-installed print recursive' 'p') common=('arch cachedir color config dbpath debug help logfile noconfirm noprogressbar noscriptlet quiet root verbose' 'b d h q r v') core=('database help query remove sync upgrade version' 'D Q R S U V h') diff --git a/contrib/zsh_completion.in b/contrib/zsh_completion.in index 67aa40a7..f2ff7c8a 100644 --- a/contrib/zsh_completion.in +++ b/contrib/zsh_completion.in @@ -37,6 +37,7 @@ _pacman_opts_common=( _pacman_opts_pkgfile=( '*-d[Skip dependency checks]' '*--nodeps[Skip dependency checks]' + '*--assume-installed[Add virtual package to satisfy dependencies]' '--dbonly[Only remove database entry, do not remove files]' '--force[Overwrite conflicting files]' '--needed[Do not reinstall up to date packages]' @@ -70,6 +71,7 @@ _pacman_opts_query_modifiers=( _pacman_opts_remove=( {-c,--cascade}'[Remove all dependent packages]' {*-d,*--nodeps}'[Skip dependency checks]' + '*--assume-installed[Add virtual package to satisfy dependencies]' {-n,--nosave}'[Remove protected configuration files]' {\*-s,\*--recursive}'[Remove dependencies not required by other packages]' '--dbonly[Only remove database entry, do not remove files]' @@ -96,6 +98,7 @@ _pacman_opts_sync_actions=( # options for passing to _arguments: options for --sync command _pacman_opts_sync_modifiers=( {\*-d,\*--nodeps}'[Skip dependency checks]' + '*--assume-installed[Add virtual package to satisfy dependencies]' {\*-i,\*--info}'[View package information]' {-l,--list}'[List all packages in a repository]' {-p,--print}'[Print download URIs for each package to be installed]' |