From f58478822c68d95f4974302c968a843795520b52 Mon Sep 17 00:00:00 2001 From: Gregory Anders Date: Mon, 6 Nov 2023 13:48:01 -0600 Subject: [PATCH] terminfo: fixup Sync terminfo string The closing string on a conditional is "%;", not "%". --- src/terminfo/ghostty.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/terminfo/ghostty.zig b/src/terminfo/ghostty.zig index f84d254bc..515878378 100644 --- a/src/terminfo/ghostty.zig +++ b/src/terminfo/ghostty.zig @@ -120,7 +120,7 @@ pub const ghostty: Source = .{ .{ .name = "Ms", .value = .{ .string = "\\E]52;%p1%s;%p2%s\\007" } }, // Synchronized output - .{ .name = "Sync", .value = .{ .string = "\\E[?2026%?%p1%{1}%-%tl%eh%" } }, + .{ .name = "Sync", .value = .{ .string = "\\E[?2026%?%p1%{1}%-%tl%eh%;" } }, // Bracketed paste mode .{ .name = "BD", .value = .{ .string = "\\E[?2004l" } },