From 1efade9962123a3b60f4277b12190dc459359693 Mon Sep 17 00:00:00 2001 From: romkatv Date: Mon, 13 Jan 2020 08:54:29 +0100 Subject: [PATCH] don't replace show with print if p10k-on-post-prompt is defined --- internal/p10k.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/p10k.zsh b/internal/p10k.zsh index 68f78262..e09575cb 100644 --- a/internal/p10k.zsh +++ b/internal/p10k.zsh @@ -4479,7 +4479,7 @@ function _p9k_on_expand() { if [[ $P9K_TTY == new ]]; then _p9k__empty_line_i=3 _p9k__display_v[2]=hide - elif [[ -z $_p9k_transient_prompt ]]; then + elif [[ -z $_p9k_transient_prompt && $+functions[p10k-on-post-prompt] == 0 ]]; then _p9k__empty_line_i=3 _p9k__display_v[2]=print else @@ -4492,7 +4492,7 @@ function _p9k_on_expand() { if [[ $P9K_TTY == new ]]; then _p9k__ruler_i=3 _p9k__display_v[4]=hide - elif [[ -z $_p9k_transient_prompt ]]; then + elif [[ -z $_p9k_transient_prompt && $+functions[p10k-on-post-prompt] == 0 ]]; then _p9k__ruler_i=3 _p9k__display_v[4]=print else