From 7237399e631306e566205d6a71d2dfeec9ec659b Mon Sep 17 00:00:00 2001 From: Andy Kipp Date: Thu, 16 Jul 2026 19:52:03 +0600 Subject: [PATCH] Fix outdated syntax in xsh --- shell/shellIntegration.xsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/shellIntegration.xsh b/shell/shellIntegration.xsh index e7e063e0..8bdb56fb 100644 --- a/shell/shellIntegration.xsh +++ b/shell/shellIntegration.xsh @@ -25,7 +25,7 @@ __is_original_prompt = $PROMPT $PROMPT_FIELDS['__is_prompt_start'] = __is_prompt_start $PROMPT_FIELDS['__is_prompt_end'] = __is_prompt_end $PROMPT_FIELDS['__is_update_cwd'] = __is_update_cwd -if 'ISTERM_TESTING' in ${...}: +if 'ISTERM_TESTING' in @.env: $PROMPT = "> " -$PROMPT = "{__is_prompt_start}{__is_update_cwd}" + $PROMPT + "{__is_prompt_end}" \ No newline at end of file +$PROMPT = "{__is_prompt_start}{__is_update_cwd}" + $PROMPT + "{__is_prompt_end}"