From 3024de517bb7064a36d48c334a741722f6b747b0 Mon Sep 17 00:00:00 2001 From: Eli Young Date: Wed, 14 Mar 2018 13:30:57 -0700 Subject: [PATCH] Update shell integration versions --- sources/VT100Screen.m | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sources/VT100Screen.m b/sources/VT100Screen.m index 03f3d615eb..8b86ed2b47 100644 --- a/sources/VT100Screen.m +++ b/sources/VT100Screen.m @@ -3995,10 +3995,10 @@ - (void)terminalSetShellIntegrationVersion:(NSString *)version { } NSDictionary *lastVersionByShell = - @{ @"tcsh": @2, - @"bash": @5, - @"zsh": @5, - @"fish": @5 }; + @{ @"tcsh": @3, + @"bash": @11, + @"zsh": @6, + @"fish": @6 }; NSInteger latestKnownVersion = [lastVersionByShell[shell ?: @""] integerValue]; if (!shell || versionNumber < latestKnownVersion) { [delegate_ screenSuggestShellIntegrationUpgrade];