summaryrefslogtreecommitdiff
path: root/internal/p10k.zsh
diff options
context:
space:
mode:
authorRoman Perepelitsa <roman.perepelitsa@gmail.com>2023-01-13 14:06:20 +0300
committerRoman Perepelitsa <roman.perepelitsa@gmail.com>2023-01-13 14:06:20 +0300
commita066b55f855c8e488d3ea9e26e861bdd5ecd4fe8 (patch)
treecf1eca95ae778f7e130d856f981487cfd9d2e4d5 /internal/p10k.zsh
parent1a4b01c2321860aadd952d661debdb29980c2e40 (diff)
don't trust P9K_SSH if it was set with a different TTY (#2154)v1.17.0
Diffstat (limited to 'internal/p10k.zsh')
-rw-r--r--internal/p10k.zsh5
1 files changed, 3 insertions, 2 deletions
diff --git a/internal/p10k.zsh b/internal/p10k.zsh
index 6bdaaf1d..85873ffb 100644
--- a/internal/p10k.zsh
+++ b/internal/p10k.zsh
@@ -8310,8 +8310,9 @@ _p9k_init_ssh() {
#
# License: https://github.com/sindresorhus/pure/blob/e8abf9d37185ec9b7b4398ca9c5eba555a1028eb/license.
- [[ -n $P9K_SSH ]] && return
+ [[ -n $P9K_SSH && $_P9K_SSH_TTY == $TTY ]] && return
typeset -gix P9K_SSH=0
+ typeset -gx _P9K_SSH_TTY=$TTY
if [[ -n $SSH_CLIENT || -n $SSH_TTY || -n $SSH_CONNECTION ]]; then
P9K_SSH=1
return 0
@@ -8881,7 +8882,7 @@ _p9k_deinit() {
fi
(( $+_p9k__iterm2_precmd )) && functions[iterm2_precmd]=$_p9k__iterm2_precmd
(( $+_p9k__iterm2_decorate_prompt )) && functions[iterm2_decorate_prompt]=$_p9k__iterm2_decorate_prompt
- unset -m '(_POWERLEVEL9K_|P9K_|_p9k_)*~(P9K_SSH|P9K_TOOLBOX_NAME|P9K_TTY|_P9K_TTY)'
+ unset -m '(_POWERLEVEL9K_|P9K_|_p9k_)*~(P9K_SSH|_P9K_SSH_TTY|P9K_TOOLBOX_NAME|P9K_TTY|_P9K_TTY)'
[[ -n $__p9k_locale ]] || unset __p9k_locale
}