summaryrefslogtreecommitdiffstats
path: root/shell-completion/colcrt
blob: 628416e6d1c78378412038278c43e2f979053a0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
_colcrt_module()
{
	local cur OPTS
	COMPREPLY=()
	cur="${COMP_WORDS[COMP_CWORD]}"
	case $cur in
		-*)
			OPTS="	-  --no-underlining
				-2 --half-lines
				-V --version
				-h --help"
			COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
			return 0
			;;
	esac
	compopt -o filenames
	COMPREPLY=( $(compgen -f -- $cur) )
	return 0
}
complete -F _colcrt_module colcrt