summaryrefslogtreecommitdiff
path: root/shell-completion/zsh/_sd_machines
diff options
context:
space:
mode:
authorAndy Wingo <wingo@pobox.com>2015-04-08 08:12:20 +0200
committerAndy Wingo <wingo@pobox.com>2015-04-08 08:30:28 +0200
commit4e46791a9f00ca29537a3ee554841dfa1488ad79 (patch)
tree52b3c0dc0c66d414acc87903dc37a093e4a1ec91 /shell-completion/zsh/_sd_machines
parent313733493e610bb3b027796a1595e353e6c6f3d7 (diff)
remove shell completion
Diffstat (limited to 'shell-completion/zsh/_sd_machines')
-rw-r--r--shell-completion/zsh/_sd_machines13
1 files changed, 0 insertions, 13 deletions
diff --git a/shell-completion/zsh/_sd_machines b/shell-completion/zsh/_sd_machines
deleted file mode 100644
index a0039ee0f8..0000000000
--- a/shell-completion/zsh/_sd_machines
+++ /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