From 31896534a086a6a3012950609e13c0c429f74501 Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Sat, 17 Aug 2024 07:40:50 +0200 Subject: [PATCH] Correct iTerm2 version in CSI u workaround The 3.5.4 release does not include the fix, presumably the next one then. See #10653 --- src/reader.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reader.rs b/src/reader.rs index 03ef24c49..56e209878 100644 --- a/src/reader.rs +++ b/src/reader.rs @@ -3883,7 +3883,7 @@ fn interactive_hacks(parser: &Parser) { let Some(version) = parse_version(&version.as_list()[0]) else { return false; }; - version < (3, 5, 4) + version < (3, 5, 5) }), ); }