From 1c7bbf7f7151eede70652374eea7be5b461ccf1c Mon Sep 17 00:00:00 2001 From: Anton Volnuhin Date: Mon, 2 Mar 2026 23:06:46 +0300 Subject: [PATCH] fix tide v7 configure: replace --transient flag with fish variable --transient was removed from tide configure in v7, now controlled via tide_prompt_transient_enabled universal variable. Co-Authored-By: Claude Opus 4.6 --- run_onchange_after_configure_tide.sh.tmpl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/run_onchange_after_configure_tide.sh.tmpl b/run_onchange_after_configure_tide.sh.tmpl index 255fa31..25dc061 100644 --- a/run_onchange_after_configure_tide.sh.tmpl +++ b/run_onchange_after_configure_tide.sh.tmpl @@ -13,7 +13,8 @@ if ! fish -c "type -q tide" &>/dev/null; then fi echo "Configuring tide prompt..." -fish -c "tide configure --auto --style=Classic --prompt_colors='True color' --classic_prompt_color=Dark --show_time='24-hour format' --classic_prompt_separators=Slanted --powerline_prompt_heads=Slanted --powerline_prompt_tails=Round --powerline_prompt_style='Two lines, frame' --prompt_connection=Disconnected --powerline_right_prompt_frame=No --prompt_connection_andor_frame_color=Darkest --prompt_spacing=Sparse --icons='Few icons' --transient=No" >/dev/null +fish -c "tide configure --auto --style=Classic --prompt_colors='True color' --classic_prompt_color=Dark --show_time='24-hour format' --classic_prompt_separators=Slanted --powerline_prompt_heads=Slanted --powerline_prompt_tails=Round --powerline_prompt_style='Two lines, frame' --prompt_connection=Disconnected --powerline_right_prompt_frame=No --prompt_connection_andor_frame_color=Darkest --prompt_spacing=Sparse --icons='Few icons'" >/dev/null +fish -c "set -U tide_prompt_transient_enabled false" fish -c "set -U tide_right_prompt_items (string match -v -- node \$tide_right_prompt_items)" fish -c "set -U tide_right_prompt_items (string match -v -- gcloud \$tide_right_prompt_items)" fish -c "set -U tide_right_prompt_items (string match -v -- kubectl \$tide_right_prompt_items)"