summaryrefslogtreecommitdiffstats
path: root/shell-completion/zsh/_sd_machines
diff options
context:
space:
mode:
Diffstat (limited to 'shell-completion/zsh/_sd_machines')
-rw-r--r--shell-completion/zsh/_sd_machines8
1 files changed, 4 insertions, 4 deletions
diff --git a/shell-completion/zsh/_sd_machines b/shell-completion/zsh/_sd_machines
index e783620b97..30b7fd81a3 100644
--- a/shell-completion/zsh/_sd_machines
+++ b/shell-completion/zsh/_sd_machines
@@ -2,15 +2,15 @@
# SPDX-License-Identifier: LGPL-2.1+
(( $+functions[__sd_machines_get_machines] )) ||
-__sd_machines_get_machines () {
+ __sd_machines_get_machines () {
machinectl --full --no-legend --no-pager list | {while read -r a b; do echo $a; done;};
-}
+ }
local -a _machines
_machines=("${(fo)$(__sd_machines_get_machines)}")
typeset -U _machines
if [[ -n "$_machines" ]]; then
- _describe 'machines' _machines
+ _describe 'machines' _machines
else
- _message 'no machines'
+ _message 'no machines'
fi