2013-09-16 12:27:08 +03:00
|
|
|
[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/Tarrasch/zsh-autoenv/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
|
|
|
|
|
2014-12-04 08:58:45 +02:00
|
|
|
[![Build Status](https://travis-ci.org/Tarrasch/zsh-autoenv.svg?branch=master)](https://travis-ci.org/Tarrasch/zsh-autoenv)
|
2013-09-08 19:50:20 +03:00
|
|
|
|
2015-05-06 21:42:42 +03:00
|
|
|
# Autoenv for Zsh
|
2013-09-08 18:14:28 +03:00
|
|
|
|
2015-05-22 00:58:26 +03:00
|
|
|
zsh-autoenv automatically sources (known/whitelisted) `.autoenv.zsh` files,
|
|
|
|
typically used in project root directories.
|
2013-09-08 18:14:28 +03:00
|
|
|
|
2015-05-06 21:42:42 +03:00
|
|
|
It handles "enter" and leave" events, nesting, and stashing of
|
|
|
|
variables (overwriting and restoring).
|
|
|
|
|
|
|
|
## Features
|
|
|
|
|
|
|
|
- Support for enter and leave events, which can use the same file.
|
2015-05-22 00:58:26 +03:00
|
|
|
By default `.autoenv.zsh` is used for entering, and `.autoenv_leave.zsh`
|
|
|
|
for leaving.
|
2015-05-14 02:36:33 +03:00
|
|
|
- Interactively asks for confirmation / authentication before sourcing an
|
2015-05-22 00:58:26 +03:00
|
|
|
unknown `.autoenv.zsh` file, and remembers whitelisted files by their
|
|
|
|
hashed content.
|
2015-05-06 21:42:42 +03:00
|
|
|
- Test suite.
|
|
|
|
- Written in Zsh.
|
|
|
|
|
|
|
|
### Variable stashing
|
|
|
|
|
2015-05-22 00:58:26 +03:00
|
|
|
You can use `autostash` in your `.autoenv.zsh` files to overwrite some
|
|
|
|
variable, e.g. `$PATH`. When leaving the directory, it will be automatically
|
|
|
|
restored.
|
2015-05-06 21:42:42 +03:00
|
|
|
|
2015-05-22 00:58:26 +03:00
|
|
|
% echo 'echo ENTERED; autostash FOO=changed' > project/.autoenv.zsh
|
2015-05-06 21:42:42 +03:00
|
|
|
% FOO=orig
|
|
|
|
% cd project
|
|
|
|
Attempting to load unauthorized env file!
|
2015-05-22 00:58:26 +03:00
|
|
|
-rw-rw-r-- 1 user user 36 Mai 6 20:38 /tmp/project/.autoenv.zsh
|
2015-05-06 21:42:42 +03:00
|
|
|
|
|
|
|
**********************************************
|
|
|
|
|
|
|
|
echo ENTERED; autostash FOO=changed
|
|
|
|
|
|
|
|
**********************************************
|
|
|
|
|
|
|
|
Would you like to authorize it? (type 'yes') yes
|
|
|
|
ENTERED
|
|
|
|
project % echo $FOO
|
|
|
|
changed
|
|
|
|
% cd ..
|
|
|
|
% echo $FOO
|
|
|
|
orig
|
|
|
|
|
|
|
|
There is also `stash`, `unstash` and `autounstash`, in case you want to
|
|
|
|
have more control.
|
|
|
|
|
|
|
|
The varstash library has been taken from smartcd, and was optimized for Zsh.
|
|
|
|
|
|
|
|
|
2015-05-22 00:58:26 +03:00
|
|
|
## Writing your .autoenv.zsh file
|
2015-05-06 21:42:42 +03:00
|
|
|
|
|
|
|
### `autoenv_source_parent()`
|
|
|
|
|
2015-10-09 23:13:36 +03:00
|
|
|
zsh-autoenv will stop looking for `.autoenv.zsh` files upwards after the first
|
|
|
|
one has been found, but you can use the function `autoenv_source_parent` to
|
|
|
|
source the next `.autoenv.zsh` file upwards the directory tree from there.
|
2013-09-08 18:14:28 +03:00
|
|
|
|
2015-10-09 23:13:36 +03:00
|
|
|
The function accepts an optional argument, which allows to stop looking before
|
|
|
|
the file system root is reached:
|
|
|
|
|
|
|
|
```zsh
|
|
|
|
autoenv_source_parent ../..
|
|
|
|
```
|
2013-09-08 18:14:28 +03:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
2015-05-06 21:42:42 +03:00
|
|
|
Clone the repository and source it from your `~/.zshrc` file:
|
|
|
|
|
|
|
|
% git clone https://github.com/Tarrasch/zsh-autoenv ~/.dotfiles/lib/zsh-autoenv
|
|
|
|
% echo 'source ~/.dotfiles/lib/zsh-autoenv/autoenv.zsh' >> ~/.zshrc
|
|
|
|
|
2014-12-11 17:31:41 +02:00
|
|
|
### Using [antigen](https://github.com/zsh-users/antigen)
|
2013-09-08 18:14:28 +03:00
|
|
|
|
|
|
|
antigen-bundle Tarrasch/zsh-autoenv
|
|
|
|
|
2015-02-18 17:30:43 +02:00
|
|
|
### Using [zgen](https://github.com/tarjoilija/zgen)
|
|
|
|
|
|
|
|
Add the following to your `.zshrc` where you are loading your plugins:
|
|
|
|
|
|
|
|
zgen load Tarrasch/zsh-autoenv
|
|
|
|
|
2016-05-27 05:33:06 +03:00
|
|
|
### Using [zplug](https://github.com/zplug/zplug)
|
|
|
|
|
|
|
|
Add the following to your `.zshrc` where you are loading your plugins:
|
|
|
|
|
|
|
|
zplug "Tarrasch/zsh-autoenv"
|
2014-12-11 17:31:41 +02:00
|
|
|
|
2015-05-06 21:42:42 +03:00
|
|
|
## Configuration
|
|
|
|
|
|
|
|
You can use the following variables to control zsh-autoenv's behavior.
|
|
|
|
Add them to your `~/.zshrc` file, before sourcing/loading zsh-autoenv.
|
|
|
|
|
|
|
|
### AUTOENV\_FILE\_ENTER
|
|
|
|
Name of the file to look for when entering directories.
|
|
|
|
|
2015-05-22 00:58:26 +03:00
|
|
|
Default: `.autoenv.zsh`
|
2015-05-06 21:42:42 +03:00
|
|
|
|
|
|
|
### AUTOENV\_FILE\_LEAVE
|
|
|
|
Name of the file to look for when leaving directories.
|
|
|
|
Requires `AUTOENV_HANDLE_LEAVE=1`.
|
|
|
|
|
2015-05-22 00:58:26 +03:00
|
|
|
Default: `.autoenv_leave.zsh`
|
2015-05-06 21:42:42 +03:00
|
|
|
|
|
|
|
### AUTOENV\_LOOK\_UPWARDS
|
2015-05-22 00:58:26 +03:00
|
|
|
Look for zsh-autoenv "enter" files in parent dirs?
|
2015-05-06 21:42:42 +03:00
|
|
|
|
|
|
|
Default: `1`
|
|
|
|
|
|
|
|
### AUTOENV\_HANDLE\_LEAVE
|
|
|
|
Handle leave events when changing away from a subtree, where an "enter"
|
|
|
|
event was handled?
|
|
|
|
|
|
|
|
Default: `1`
|
|
|
|
|
|
|
|
### AUTOENV\_DISABLED
|
|
|
|
(Temporarily) disable zsh-autoenv. This gets looked at in the chpwd handler.
|
|
|
|
|
|
|
|
Default: 0
|
|
|
|
|
2015-09-18 15:48:57 +03:00
|
|
|
### AUTOENV\_DEBUG
|
2015-05-06 21:42:42 +03:00
|
|
|
Enable debugging. Multiple levels are supported (max 2).
|
|
|
|
|
2017-04-30 15:14:25 +03:00
|
|
|
- 0: no debug messages
|
|
|
|
- 1: generic debug logging
|
|
|
|
- 2: more verbose messages
|
|
|
|
- messages about adding/removing files on the internal stack
|
|
|
|
- 3: everything
|
|
|
|
- sets xtrace option (`set -x`) while sourcing env files
|
|
|
|
|
2015-05-06 21:42:42 +03:00
|
|
|
Default: `0`
|
|
|
|
|
2017-08-11 15:15:46 +03:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
zsh-autoenv works automatically once installed.
|
|
|
|
|
|
|
|
You can use ``autoenv-edit`` to edit the nearest/current autoenv files.
|
|
|
|
It will use ``$AUTOENV_EDITOR``, ``$EDITOR``, or ``vim`` for editing.
|
|
|
|
|
2017-04-24 01:41:27 +03:00
|
|
|
## Recipes
|
|
|
|
|
|
|
|
### Automatically activate Python virtualenvs
|
|
|
|
|
|
|
|
Given `AUTOENV_FILE_ENTER=.autoenv.zsh`, `AUTOENV_FILE_LEAVE=.autoenv.zsh` and
|
|
|
|
`AUTOENV_HANDLE_LEAVE=1` the following script will activate Python virtualenvs
|
|
|
|
automatically in all subdirectories (`.venv` directories get used by
|
|
|
|
[pipenv](https://github.com/kennethreitz/pipenv) with
|
|
|
|
`PIPENV_VENV_IN_PROJECT=1`):
|
|
|
|
|
|
|
|
```zsh
|
|
|
|
# Environment file for all projects.
|
|
|
|
# - (de)activates Python virtualenvs (.venv) from pipenv
|
|
|
|
|
|
|
|
if [[ $autoenv_event == 'enter' ]]; then
|
|
|
|
autoenv_source_parent
|
|
|
|
|
|
|
|
_my_autoenv_venv_chpwd() {
|
|
|
|
if [[ -z "$_ZSH_ACTIVATED_VIRTUALENV" && -n "$VIRTUAL_ENV" ]]; then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
2017-04-27 23:39:52 +03:00
|
|
|
setopt localoptions extendedglob
|
2017-04-24 01:41:27 +03:00
|
|
|
local -a venv
|
|
|
|
venv=(./(../)#.venv(NY1:A))
|
|
|
|
|
2017-05-24 19:02:47 +03:00
|
|
|
if [[ -n "$_ZSH_ACTIVATED_VIRTUALENV" && -n "$VIRTUAL_ENV" ]]; then
|
2017-04-24 01:41:27 +03:00
|
|
|
if ! (( $#venv )) || [[ "$_ZSH_ACTIVATED_VIRTUALENV" != "$venv[1]" ]]; then
|
|
|
|
unset _ZSH_ACTIVATED_VIRTUALENV
|
2017-05-24 19:02:47 +03:00
|
|
|
echo "De-activating virtualenv: ${(D)VIRTUAL_ENV}" >&2
|
|
|
|
deactivate
|
2017-04-24 01:41:27 +03:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -z "$VIRTUAL_ENV" ]]; then
|
|
|
|
if (( $#venv )); then
|
2017-05-24 19:02:47 +03:00
|
|
|
echo "Activating virtualenv: ${(D)venv}" >&2
|
2017-04-24 01:41:27 +03:00
|
|
|
source $venv[1]/bin/activate
|
|
|
|
_ZSH_ACTIVATED_VIRTUALENV="$venv[1]"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
autoload -U add-zsh-hook
|
|
|
|
add-zsh-hook chpwd _my_autoenv_venv_chpwd
|
|
|
|
_my_autoenv_venv_chpwd
|
|
|
|
else
|
|
|
|
add-zsh-hook -d chpwd _my_autoenv_venv_chpwd
|
|
|
|
fi
|
|
|
|
```
|
2015-05-06 21:42:42 +03:00
|
|
|
|
|
|
|
## Related projects
|
2015-11-12 23:30:55 +02:00
|
|
|
- https://github.com/direnv/direnv
|
2015-05-06 21:42:42 +03:00
|
|
|
- https://github.com/cxreg/smartcd
|
|
|
|
- https://github.com/kennethreitz/autoenv
|
|
|
|
|
2014-12-11 17:31:41 +02:00
|
|
|
|
2015-05-06 21:42:42 +03:00
|
|
|
## History
|
2014-12-11 17:31:41 +02:00
|
|
|
|
2015-05-06 22:33:40 +03:00
|
|
|
This started as an optimized version of the bash plugin
|
|
|
|
[autoenv](https://github.com/kennethreitz/autoenv) but for Zsh, and grew a lot
|
|
|
|
of functionality on top of it (inspired by [smartcd]).
|
|
|
|
|
|
|
|
The code was initially based on
|
|
|
|
[@joshuaclayton](https://github.com/joshuaclayton)'s dotfiles.
|
|
|
|
In September 2013 [@Tarrasch](https://github.com/Tarrasch) packaged it into a
|
|
|
|
nice [antigen]-compatible unit with integration tests. Since November 2014,
|
|
|
|
[@blueyed](https://github.com/blueyed) took over and added many many nice
|
|
|
|
features, mainly inspired by [smartcd].
|
|
|
|
|
|
|
|
[antigen]: https://github.com/Tarrasch/antigen-hs
|
|
|
|
[smartcd]: https://github.com/cxreg/smartcd
|