summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-07-10 15:40:13 -0400
committerJesse Luehrs <doy@tozt.net>2021-07-10 15:40:13 -0400
commitf8aa9f87ddb7104d9d98f8c87c0d55a453a81a9c (patch)
tree97d3a11641fe0f8c7fa163f720b214e76379f7ea
parentab2f02abbe70bcc027be6dee2c37a346c37e51b5 (diff)
downloadconf-f8aa9f87ddb7104d9d98f8c87c0d55a453a81a9c.tar.gz
conf-f8aa9f87ddb7104d9d98f8c87c0d55a453a81a9c.zip
use less annoying syntax for string splitting
-rw-r--r--config/zsh/local-completions/hornet/_sv3
1 files changed, 1 insertions, 2 deletions
diff --git a/config/zsh/local-completions/hornet/_sv b/config/zsh/local-completions/hornet/_sv
index 837914e..b67ef08 100644
--- a/config/zsh/local-completions/hornet/_sv
+++ b/config/zsh/local-completions/hornet/_sv
@@ -2,8 +2,7 @@
local -a service_list
local services=$(ls ~/.services/enabled/)
-service_list=(${(s:
-:)services})
+service_list=(${(f)services})
_describe 'commands' service_list