summaryrefslogblamecommitdiffstats
path: root/bash-completion/ctrlaltdel
blob: e72575223cfc9d9d06b4c8302af87fc446529191 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                               
_ctrlaltdel_module()
{
	local cur
	cur="${COMP_WORDS[COMP_CWORD]}"
	COMPREPLY=()
	if [ $COMP_CWORD -eq 1 ]; then
		COMPREPLY=( $(compgen -W "hard soft" -- $cur) )
	fi
	return 0
}
complete -F _ctrlaltdel_module ctrlaltdel