From c7edb99ea2acae9d332c92fbee1cc82a50309e9e Mon Sep 17 00:00:00 2001 From: Ilan Cosman Date: Fri, 22 Dec 2023 10:37:48 -0800 Subject: [PATCH] fix transience when command is entered during output (fixes #455) --- functions/fish_prompt.fish | 2 ++ 1 file changed, 2 insertions(+) diff --git a/functions/fish_prompt.fish b/functions/fish_prompt.fish index 59f5a965..563d9268 100644 --- a/functions/fish_prompt.fish +++ b/functions/fish_prompt.fish @@ -161,5 +161,7 @@ if test "$tide_prompt_transient_enabled" = true end bind \r _tide_enter_transient + bind \n _tide_enter_transient bind -M insert \r _tide_enter_transient + bind -M insert \n _tide_enter_transient end