File tree Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Expand file tree Collapse file tree 2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 23
23
command. (:bbissue: `203 `)
24
24
- Update the tests to use a valid template for creating temporary
25
25
directories under Linux.
26
+ - Fix the use of ``which `` in ``virtualenvwrapper_lazy.sh `` in case it
27
+ is aliased.
28
+ - Fix an issue with recursion in completion expansion crashing zsh,
29
+ contributed by :bbuser: `blueyed `.
26
30
27
31
4.1.1
28
32
=====
Original file line number Diff line number Diff line change @@ -17,11 +17,13 @@ function virtualenvwrapper_load {
17
17
# Only source the script once.
18
18
# We might get called multiple times, because not all of _VIRTUALENVWRAPPER_API gets
19
19
# a real completion.
20
- if [ -z $VIRTUALENVWRAPPER_LAZY_LOADED ]; then
21
- if [ -n " $ZSH_VERSION " ] ; then
22
- # Tried to unset any auto-load completion, does not appear to work/triggers a crash
23
- # compctl + $(echo ${_VIRTUALENVWRAPPER_API})
24
- fi
20
+ if [ -z $VIRTUALENVWRAPPER_LAZY_LOADED ]
21
+ then
22
+ # if [ -n "$ZSH_VERSION" ]
23
+ # then
24
+ # # Tried to unset any auto-load completion, does not appear to work/triggers a crash
25
+ # # compctl + $(echo ${_VIRTUALENVWRAPPER_API})
26
+ # fi
25
27
source " $VIRTUALENVWRAPPER_SCRIPT "
26
28
VIRTUALENVWRAPPER_LAZY_LOADED=1
27
29
fi
You can’t perform that action at this time.
0 commit comments