summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-03-01 03:44:17 -0500
committerJesse Luehrs <doy@tozt.net>2021-03-01 03:44:17 -0500
commit432bbcf90817b53ec7c7fff9cd819ada7efb2223 (patch)
tree69145181c1eee97012d667052924a35994a984d4 /config
parent4f2223e957c4e80edbf0295f8dd579c62f0d1038 (diff)
downloadconf-432bbcf90817b53ec7c7fff9cd819ada7efb2223.tar.gz
conf-432bbcf90817b53ec7c7fff9cd819ada7efb2223.zip
add sv completion for hornet
Diffstat (limited to 'config')
-rw-r--r--config/zsh/local-completions/hornet/_sv10
1 files changed, 10 insertions, 0 deletions
diff --git a/config/zsh/local-completions/hornet/_sv b/config/zsh/local-completions/hornet/_sv
new file mode 100644
index 0000000..8887bd6
--- /dev/null
+++ b/config/zsh/local-completions/hornet/_sv
@@ -0,0 +1,10 @@
+#compdef svdn svget svkill svlog svnuke svre svst svstop svup
+
+local -a service_list
+local services=$(ls ~/.services/enabled/)
+service_list=(${(s:
+:)services})
+
+_describe 'commands' service_list
+
+# vim:ft=zsh