mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-06 01:05:48 +02:00
Add support for screen_erase_characters ECH
This commit is contained in:
@@ -150,6 +150,10 @@ def screen_erase_in_line(how: int, private: bool) -> None:
|
||||
write(f'{CSI}{"?" if private else ""}{how}K')
|
||||
|
||||
|
||||
def screen_erase_characters(num: int) -> None:
|
||||
write(f'{CSI}{num}X')
|
||||
|
||||
|
||||
def screen_delete_lines(num: int) -> None:
|
||||
write(f'{CSI}{num}M')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user