From f8aa9f87ddb7104d9d98f8c87c0d55a453a81a9c Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Sat, 10 Jul 2021 15:40:13 -0400 Subject: use less annoying syntax for string splitting --- config/zsh/local-completions/hornet/_sv | 3 +-- 1 file changed, 1 insertion(+), 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 -- cgit v1.2.3-54-g00ecf