aboutsummaryrefslogtreecommitdiffstats
path: root/code-review.bash-completion
blob: 6da8b9c82fe74c47bf620450fa00b6677f495281 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function _code_review () {
	local cur
	local subcommands="changed-files commits diff difftool start stat"

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

	case "$COMP_CWORD" in
	1 | 2)
		COMPREPLY=( $( compgen -W "$subcommands" -- $cur ) )
		;;
	3)
		COMPREPLY=()
		;;
	esac

	return 0
}

complete -o default -F _code_review code-review