mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-06-26 10:51:55 +00:00
Add support for screen_erase_characters ECH
This commit is contained in:
parent
e57692e4f5
commit
e66b8a47d4
1 changed files with 4 additions and 0 deletions
|
|
@ -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')
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue