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…
Reference in a new issue