mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-16 08:46:08 +03:00
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:
@ -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" } },
|
||||
|
Reference in New Issue
Block a user