File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 27
27
:ref: `VIRTUALENVWRAPPER_LOG_DIR
28
28
<variable-VIRTUALENVWRAPPER_LOG_DIR>` variables to control the
29
29
locations of hooks and logs.
30
+ - Enabled tab completion for :ref: `command-showvirtualenv `
31
+ (:bbissue: `78 `).
30
32
31
33
2.6.3
32
34
Original file line number Diff line number Diff line change @@ -411,6 +411,7 @@ if [ -n "$BASH" ] ; then
411
411
COMPREPLY=( $( compgen -W " ` virtualenvwrapper_show_workon_options` " -- ${cur} ) )
412
412
}
413
413
414
+
414
415
_cdvirtualenv_complete ()
415
416
{
416
417
local cur=" $2 "
@@ -427,8 +428,9 @@ if [ -n "$BASH" ] ; then
427
428
complete -o default -o nospace -F _virtualenvs workon
428
429
complete -o default -o nospace -F _virtualenvs rmvirtualenv
429
430
complete -o default -o nospace -F _virtualenvs cpvirtualenv
431
+ complete -o default -o nospace -F _virtualenvs showvirtualenv
430
432
elif [ -n " $ZSH_VERSION " ] ; then
431
- compctl -g " ` virtualenvwrapper_show_workon_options` " workon rmvirtualenv cpvirtualenv
433
+ compctl -g " ` virtualenvwrapper_show_workon_options` " workon rmvirtualenv cpvirtualenv showvirtualenv
432
434
fi
433
435
434
436
# Prints the Python version string for the current interpreter.
You can’t perform that action at this time.
0 commit comments