diff options
Diffstat (limited to 'etc/completions/_initd')
-rw-r--r-- | etc/completions/_initd | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/etc/completions/_initd b/etc/completions/_initd new file mode 100644 index 0000000..94bc14b --- /dev/null +++ b/etc/completions/_initd @@ -0,0 +1,10 @@ +#compdef Start Restart Stop Reload Zap +## vim:ft=zsh + +local arguments + +arguments=( + '*:file:_path_files -W /etc/init.d' +) + +_arguments -s $arguments |