equal
deleted
inserted
replaced
1 # -*- mode: sh; sh-shell-file: bash -*- |
1 # -*- mode: sh; sh-shell-file: bash -*- |
2 |
2 |
3 _virtualenv() |
3 _virtualenv() |
4 { |
4 { |
5 local _opts="--version -h --help -v --verbose -q --quiet --clear --system-site-packages \ |
5 local _opts="--version -h --help -v --verbose -q --quiet --clear --system-site-packages \ |
6 --always-copy --unzip-setuptools --relocatable --no-setuptools --no-pip --extra-search-dir= --prompt= --python=" |
6 --always-copy --unzip-setuptools --relocatable --no-setuptools --no-pip --extra-search-dir= --prompt= --python=" |
7 local cur |
7 local cur |
8 cur=${COMP_WORDS[COMP_CWORD]} |
8 cur=${COMP_WORDS[COMP_CWORD]} |
9 COMPREPLY=( $(compgen -W '$_opts' -- $cur) ) |
9 case $cur in |
10 return 0 |
10 -*) COMPREPLY=( $(compgen -W '$_opts' -- $cur) ) ;; |
11 } && |
11 *) COMPREPLY=( $(compgen -d -- $cur) ) |
12 complete -F _virtualenv virtualenv |
12 esac |
|
13 return 0 |
|
14 } && \ |
|
15 complete -F _virtualenv virtualenv |
13 |
16 |