From bce18d89b0e4190d78f137d72ca02253b99722d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Wed, 10 Dec 2014 17:34:41 -0500 Subject: [PATCH] zsh-completion: remove duplicate function https://bugs.archlinux.org/task/43069 (cherry picked from commit 820aced6f6067a6b7c57b7d36e44f64378870cbf) --- shell-completion/zsh/_systemctl.in | 1 - 1 file changed, 1 deletion(-) diff --git a/shell-completion/zsh/_systemctl.in b/shell-completion/zsh/_systemctl.in index 7eefe53ae..0ee4856fa 100644 --- a/shell-completion/zsh/_systemctl.in +++ b/shell-completion/zsh/_systemctl.in @@ -141,7 +141,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; } }