mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
11 lines
338 B
Zig
11 lines
338 B
Zig
//! Reverse Index (RI) - ESC M at the top of the screen.
|
|
const std = @import("std");
|
|
|
|
pub fn main() !void {
|
|
const stdout = std.io.getStdOut().writer();
|
|
try stdout.print("\x1B[H", .{}); // move to top-left
|
|
try stdout.print("\x1B[J", .{}); // clear screen
|
|
try stdout.print("\x1BM", .{});
|
|
try stdout.print("D\n", .{});
|
|
}
|