diff options
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2018-01-13 17:50:00 +0100 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2018-01-19 03:02:11 +0100 |
commit | d9eda13fc69eb0bfbbab6d7488e99e5c7b033d3a (patch) | |
tree | 681851b33b419c35171825f5eb5b5112cb4f8a43 /scripts/completion | |
parent | 170bb80a1f8a020595738c7febdb15c68574ce29 (diff) | |
download | pacman-d9eda13fc69eb0bfbbab6d7488e99e5c7b033d3a.tar.gz pacman-d9eda13fc69eb0bfbbab6d7488e99e5c7b033d3a.tar.xz |
use pacman-conf in scripts
Because parsing pacman.conf is so difficult that even we can't do it
right.
Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts/completion')
-rw-r--r-- | scripts/completion/zsh_completion.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/completion/zsh_completion.in b/scripts/completion/zsh_completion.in index f74fa297..77449955 100644 --- a/scripts/completion/zsh_completion.in +++ b/scripts/completion/zsh_completion.in @@ -316,7 +316,7 @@ _pacman_completions_all_packages() { typeset -U packages ${seq} _wanted packages expl "packages" compadd ${sep[@]} - "${(@)packages}" - repositories=(${(o)${${${(M)${(f)"$(<@sysconfdir@/pacman.conf)"}:#\[*}/\[/}/\]/}:#options}) + repositories=($(pacman-conf --repo-list)) typeset -U repositories _wanted repo_packages expl "repository/package" compadd -S "/" $repositories fi @@ -348,7 +348,7 @@ _pacman_all_packages() { # provides completions for repository names _pacman_completions_repositories() { local -a cmd repositories - repositories=(${(o)${${${(M)${(f)"$(<@sysconfdir@/pacman.conf)"}:#\[*}/\[/}/\]/}:#options}) + repositories=($(pacman-conf --repo-list)) # Uniq the array typeset -U repositories compadd "$@" -a repositories |