.bash_completion.d/virtualenv
changeset 727 42d012e9ede1
parent 726 926f9481feee
child 734 da0dc50393b6
equal deleted inserted replaced
726:926f9481feee 727:42d012e9ede1
     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