blob: 35071179a13a0021a532514455735224d5da5e76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#compdef Start Restart Stop Reload
## vim:ft=zsh
## Completion for /etc/init.d functions
## Daniel Friesel <derf@derf.homelinux.org>
## https://derf.homelinux.org/~derf/dotfiles/completion/_initd
## see also: https://derf.homelinux.org/~derf/dotfiles/zsh/function
local arguments
arguments=(
':file:_path_files -W /etc/init.d -g "*(*)"'
)
_arguments -s $arguments
|