chiark / gitweb /
remove shell completion
[elogind.git] / shell-completion / zsh / _sd_machines
diff --git a/shell-completion/zsh/_sd_machines b/shell-completion/zsh/_sd_machines
deleted file mode 100644 (file)
index a0039ee..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-#autoload
-__get_machines () {
-        machinectl --full --no-legend --no-pager list |  {while read -r a b; do echo $a; done;};
-}
-
-local -a _machines
-_machines=("${(fo)$(__get_machines)}")
-typeset -U _machines
-if [[ -n "$_machines" ]]; then
-        _describe 'machines' _machines
-else
-        _message 'no machines'
-fi