├── .gitignore ├── LICENSE ├── README.md ├── autoenv.plugin.zsh ├── functions ├── autoenv_chdir ├── autoenv_check_and_exec └── autoenv_check_and_run └── term.png /.gitignore: -------------------------------------------------------------------------------- 1 | .directory 2 | *.zwc 3 | *.old 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpm-zsh/autoenv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpm-zsh/autoenv/HEAD/README.md -------------------------------------------------------------------------------- /autoenv.plugin.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpm-zsh/autoenv/HEAD/autoenv.plugin.zsh -------------------------------------------------------------------------------- /functions/autoenv_chdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpm-zsh/autoenv/HEAD/functions/autoenv_chdir -------------------------------------------------------------------------------- /functions/autoenv_check_and_exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpm-zsh/autoenv/HEAD/functions/autoenv_check_and_exec -------------------------------------------------------------------------------- /functions/autoenv_check_and_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpm-zsh/autoenv/HEAD/functions/autoenv_check_and_run -------------------------------------------------------------------------------- /term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zpm-zsh/autoenv/HEAD/term.png --------------------------------------------------------------------------------