Merge pull request #1148 from dritter/remove_nodeenv_disable_prompt

Remove checking for NODEENV_DISABLE_PROMPT
This commit is contained in:
Dominik Ritter
2019-02-01 17:06:10 +01:00
committed by GitHub
3 changed files with 9 additions and 24 deletions
+2 -3
View File
@@ -1238,9 +1238,8 @@ prompt_nvm() {
################################################################
# Segment to display NodeEnv
prompt_nodeenv() {
local nodeenv_path="$NODE_VIRTUAL_ENV"
if [[ -n "$nodeenv_path" && "$NODE_VIRTUAL_ENV_DISABLE_PROMPT" != true ]]; then
local info="$(node -v)[$(basename "$nodeenv_path")]"
if [[ -n "$NODE_VIRTUAL_ENV" ]]; then
local info="$(node -v)[${NODE_VIRTUAL_ENV:t}]"
"$1_prompt_segment" "$0" "$2" "black" "green" "$info" 'NODE_ICON'
fi
}