zsh-completion: remove duplicate function

https://bugs.archlinux.org/task/43069
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2014-12-10 17:34:41 -05:00
parent de24871ebf
commit 820aced6f6
1 changed files with 0 additions and 1 deletions

View File

@ -142,7 +142,6 @@ _filter_units_by_property() {
done
}
_systemctl_all_units() { { __systemctl list-unit-files; __systemctl list-units --all; } | { while read -r a b; do [[ $a =~ @\. ]] || echo -E - " $a"; done; } }
_systemctl_get_template_names() { __systemctl list-unit-files | { while read -r a b; do [[ $a =~ @\. ]] && echo -E - " ${a%%@.*}@"; done; } }