summaryrefslogblamecommitdiffstats
path: root/bash-completion/colcrt
blob: 628416e6d1c78378412038278c43e2f979053a0d (plain) (tree)



















                                                                        
_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