# HG changeset patch # User Oleksandr Gavenko # Date 1424379587 -7200 # Node ID 926f9481feee15a80c11b6fd534fa9acac26b2de # Parent 840b60ed51c77fb3ef5673160baef9ad4723bea8 virtualenv diff -r 840b60ed51c7 -r 926f9481feee .bash_completion.d/virtualenv --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/.bash_completion.d/virtualenv Thu Feb 19 22:59:47 2015 +0200 @@ -0,0 +1,13 @@ +# -*- mode: sh; sh-shell-file: bash -*- + +_virtualenv() +{ + local _opts="--version -h --help -v --verbose -q --quiet --clear --system-site-packages \ + --always-copy --unzip-setuptools --relocatable --no-setuptools --no-pip --extra-search-dir= --prompt= --python=" + local cur + cur=${COMP_WORDS[COMP_CWORD]} + COMPREPLY=( $(compgen -W '$_opts' -- $cur) ) + return 0 +} && +complete -F _virtualenv virtualenv +