diff options
Diffstat (limited to '.virtpyenvs')
-rwxr-xr-x | .virtpyenvs/get_env_details | 4 | ||||
-rw-r--r-- | .virtpyenvs/initialize | 3 | ||||
-rw-r--r-- | .virtpyenvs/postactivate | 3 | ||||
-rw-r--r-- | .virtpyenvs/postdeactivate | 3 | ||||
-rwxr-xr-x | .virtpyenvs/postmkproject | 3 | ||||
-rw-r--r-- | .virtpyenvs/postmkvirtualenv | 3 | ||||
-rwxr-xr-x | .virtpyenvs/postrmvirtualenv | 4 | ||||
-rwxr-xr-x | .virtpyenvs/preactivate | 4 | ||||
-rw-r--r-- | .virtpyenvs/predeactivate | 3 | ||||
-rwxr-xr-x | .virtpyenvs/premkproject | 3 | ||||
-rwxr-xr-x | .virtpyenvs/premkvirtualenv | 4 | ||||
-rwxr-xr-x | .virtpyenvs/prermvirtualenv | 4 |
12 files changed, 41 insertions, 0 deletions
diff --git a/.virtpyenvs/get_env_details b/.virtpyenvs/get_env_details new file mode 100755 index 0000000..d579c40 --- /dev/null +++ b/.virtpyenvs/get_env_details @@ -0,0 +1,4 @@ +#!/usr/bin/zsh +# This hook is run when the list of virtualenvs is printed so each name can include details. +# argument: environment name + diff --git a/.virtpyenvs/initialize b/.virtpyenvs/initialize new file mode 100644 index 0000000..9715e08 --- /dev/null +++ b/.virtpyenvs/initialize @@ -0,0 +1,3 @@ +#!/usr/bin/zsh +# This hook is sourced during the startup phase when loading virtualenvwrapper.sh. + diff --git a/.virtpyenvs/postactivate b/.virtpyenvs/postactivate new file mode 100644 index 0000000..cef5f89 --- /dev/null +++ b/.virtpyenvs/postactivate @@ -0,0 +1,3 @@ +#!/usr/bin/zsh +# This hook is sourced after every virtualenv is activated. + diff --git a/.virtpyenvs/postdeactivate b/.virtpyenvs/postdeactivate new file mode 100644 index 0000000..6fefe20 --- /dev/null +++ b/.virtpyenvs/postdeactivate @@ -0,0 +1,3 @@ +#!/usr/bin/zsh +# This hook is sourced after every virtualenv is deactivated. + diff --git a/.virtpyenvs/postmkproject b/.virtpyenvs/postmkproject new file mode 100755 index 0000000..8de8f2d --- /dev/null +++ b/.virtpyenvs/postmkproject @@ -0,0 +1,3 @@ +#!/usr/bin/zsh +# This hook is run after a new project is activated. + diff --git a/.virtpyenvs/postmkvirtualenv b/.virtpyenvs/postmkvirtualenv new file mode 100644 index 0000000..5d48abc --- /dev/null +++ b/.virtpyenvs/postmkvirtualenv @@ -0,0 +1,3 @@ +#!/usr/bin/zsh +# This hook is sourced after a new virtualenv is activated. + diff --git a/.virtpyenvs/postrmvirtualenv b/.virtpyenvs/postrmvirtualenv new file mode 100755 index 0000000..0d34a0e --- /dev/null +++ b/.virtpyenvs/postrmvirtualenv @@ -0,0 +1,4 @@ +#!/usr/bin/zsh +# This hook is run after a virtualenv is deleted. +# argument: full path to environment directory + diff --git a/.virtpyenvs/preactivate b/.virtpyenvs/preactivate new file mode 100755 index 0000000..79d4810 --- /dev/null +++ b/.virtpyenvs/preactivate @@ -0,0 +1,4 @@ +#!/usr/bin/zsh +# This hook is run before every virtualenv is activated. +# argument: environment name + diff --git a/.virtpyenvs/predeactivate b/.virtpyenvs/predeactivate new file mode 100644 index 0000000..265b48b --- /dev/null +++ b/.virtpyenvs/predeactivate @@ -0,0 +1,3 @@ +#!/usr/bin/zsh +# This hook is sourced before every virtualenv is deactivated. + diff --git a/.virtpyenvs/premkproject b/.virtpyenvs/premkproject new file mode 100755 index 0000000..fb93455 --- /dev/null +++ b/.virtpyenvs/premkproject @@ -0,0 +1,3 @@ +#!/usr/bin/zsh +# This hook is run after a new project is created and before it is activated. + diff --git a/.virtpyenvs/premkvirtualenv b/.virtpyenvs/premkvirtualenv new file mode 100755 index 0000000..0e6671e --- /dev/null +++ b/.virtpyenvs/premkvirtualenv @@ -0,0 +1,4 @@ +#!/usr/bin/zsh +# This hook is run after a new virtualenv is created and before it is activated. +# argument: name of new environment + diff --git a/.virtpyenvs/prermvirtualenv b/.virtpyenvs/prermvirtualenv new file mode 100755 index 0000000..d0affe8 --- /dev/null +++ b/.virtpyenvs/prermvirtualenv @@ -0,0 +1,4 @@ +#!/usr/bin/zsh +# This hook is run before a virtualenv is deleted. +# argument: full path to environment directory + |