mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
16 lines
292 B
Zig
16 lines
292 B
Zig
// Modes for the ED CSI command.
|
|
pub const EraseDisplay = enum(u8) {
|
|
below = 0,
|
|
above = 1,
|
|
complete = 2,
|
|
scrollback = 3,
|
|
};
|
|
|
|
// Modes for the EL CSI command.
|
|
pub const EraseLine = enum(u8) {
|
|
right = 0,
|
|
left = 1,
|
|
complete = 3,
|
|
right_unless_pending_wrap = 4,
|
|
};
|