summaryrefslogtreecommitdiff
path: root/etc/completions/_initd
blob: 6d870a52b9c82b88ac799dcf4cb966ae025e1ff5 (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/zsh/completions/_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