terminfo: add missing % character after conditional

Not sure this is _strictly_ necessary, but according to terminfo(5) a
conditional (`%?`) should have a closing `%` character after the "else"
part. Adding it just in case some parser somewhere depends on this.
This commit is contained in:
Gregory Anders
2023-11-03 08:53:36 -07:00
parent 4ac48adf03
commit ffaf1f6a6f

View File

@ -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" } },