diff options
author | Marc Cornellà <marc.cornella@live.com> | 2020-02-13 18:33:24 +0100 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2020-02-13 18:33:24 +0100 |
commit | f17e0219fdd38d9fabce2d96d0d283d98122733f (patch) | |
tree | 3f3cffcbb38d6c7237b5845f4be1122fed163435 /plugins | |
parent | 634a50936a28ba3a57a02c92e7fe76da2d60ecf8 (diff) | |
download | zsh-f17e0219fdd38d9fabce2d96d0d283d98122733f.tar.gz zsh-f17e0219fdd38d9fabce2d96d0d283d98122733f.tar.bz2 zsh-f17e0219fdd38d9fabce2d96d0d283d98122733f.zip |
dotenv: fix prompt newline
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/dotenv/dotenv.plugin.zsh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/dotenv/dotenv.plugin.zsh b/plugins/dotenv/dotenv.plugin.zsh index 84815a416..54036bee3 100644 --- a/plugins/dotenv/dotenv.plugin.zsh +++ b/plugins/dotenv/dotenv.plugin.zsh @@ -1,11 +1,13 @@ source_env() { if [[ -f $ZSH_DOTENV_FILE ]]; then - if [ "$ZSH_DOTENV_PROMPT" != "false" ]; then # confirm before sourcing file local confirmation + # print same-line prompt and output newline character if necessary echo -n "dotenv: source '$ZSH_DOTENV_FILE' file in the directory? (Y/n) " - if read -k 1 confirmation && [[ $confirmation = [nN] ]]; then + read -k 1 confirmation; [[ "$confirmation" != $'\n' ]] && echo + # only bail out if confirmation character is n + if [[ "$confirmation" = [nN] ]]; then return fi fi |