ohmyzsh/plugins/autoenv
aviu16 b7ac62447d Fix unquoted variable expansions in source commands
Quote file paths to prevent word splitting issues.

Changed:
- microk8s line 13: source $cache → source "$cache"
- autoenv line 54: source $autoenv_dir/activate → source "$autoenv_dir/activate"
- autoenv line 56: source $autoenv_dir/activate.sh → source "$autoenv_dir/activate.sh"

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-16 16:04:21 -05:00
..
autoenv.plugin.zsh Fix unquoted variable expansions in source commands 2026-02-16 16:04:21 -05:00
README.md autoenv: look in additional installation locations, redo logic 2020-03-12 16:48:31 +01:00

Autoenv plugin

This plugin loads the Autoenv.

To use it, add autoenv to the plugins array in your zshrc file:

plugins=(... autoenv)

Functions

  • use_env(): creates and/or activates a virtualenv. For use in .env files. See the source code for details.

Requirements

In order to make this work, you will need to have the autoenv installed.

More info on the usage and install at the project's homepage.