ref(ctlseqs): use control sequence file; rename key names
All checks were successful
Zig Project Action / Lint, Spell-check and test zig project (push) Successful in 46s

This commit is contained in:
2025-02-17 23:08:47 +01:00
parent a9f48bfb6a
commit c2080ab40f
4 changed files with 87 additions and 75 deletions

View File

@@ -58,8 +58,11 @@ pub const cub = "\x1b[{d}D";
// Erase
pub const erase_below_cursor = "\x1b[J";
pub const clear_screen = "\x1b[2J";
// alt screen
pub const save_screen = "\x1b[?47h";
pub const restore_screen = "\x1b[?47l";
pub const smcup = "\x1b[?1049h";
pub const rmcup = "\x1b[?1049l";