summaryrefslogtreecommitdiffstats
path: root/bash-completion/cal
blob: d50c8bbca535ec9c435cc3b1b1e1e8ade7a947ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
_cal_module()
{
	local cur OPTS
	COMPREPLY=()
	cur="${COMP_WORDS[COMP_CWORD]}"
	case $cur in
		-*)
			OPTS="-1 --one -3 --three -s --sunday -m --monday -j --julian -y --year -V --version -h --help"
			COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
			return 0
			;;
	esac
	return 0
}
complete -F _cal_module cal