aboutsummaryrefslogtreecommitdiffstats
path: root/qcd.bash-completion
blob: f0099e0358c7a5f6dd7c4dd0d8b9249893a9bdb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Bash completion for the qcd() function

_qcd () {
	local cur
	local commands=(
		shortcut
	)

	COMPREPLY=()
	cur=${COMP_WORDS[COMP_CWORD]}

	COMPREPLY=( $( compgen -W "${commands[*]}" -- $cur ) )

	return 0
}

complete -F _qcd qcd