summaryrefslogtreecommitdiffstats
path: root/shell-completion/rename
blob: 0fe4cc64b1999c0fc2ab6eef507624e23c1935ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
_rename_module()
{
	local cur prev OPTS
	COMPREPLY=()
	cur="${COMP_WORDS[COMP_CWORD]}"
	case $cur in
		-*)
			OPTS="-v --verbose -s --symlink  -h --help -V --version"
			COMPREPLY=( $(compgen -W "${OPTS[*]}" -- $cur) )
			return 0
			;;
	esac
	case $COMP_CWORD in
		1)
			COMPREPLY=( $(compgen -W "expression" -- $cur) )
			;;
		2)
			COMPREPLY=( $(compgen -W "replacement" -- $cur) )
			;;
		*)
			compopt -o filenames
			COMPREPLY=( $(compgen -f -- $cur) )
			;;
	esac
	return 0
}
complete -F _rename_module rename