oh-my-zsh/plugins/terraform/terraform.plugin.zsh
Michael Nikitochkin 510d90749f Fix the terraform function name (#6418)
* Fix the terraform function name

Current function name do worse. I always use `terr<TAB>` and before those prompt it was add space in the end. Now because we have multiple functions and binaries started with terraform there are no space.

* Updated terraform readme

Updated the name of new function name
2017-11-14 06:36:22 -08:00

8 lines
195 B
Bash

function tf_prompt_info() {
# check if in terraform dir
if [ -d .terraform ]; then
workspace=$(terraform workspace show 2> /dev/null) || return
echo "[${workspace}]"
fi
}