Add some more command to replay commands
This commit is contained in:
parent
d896d7713d
commit
0dd3ee0046
1 changed files with 8 additions and 0 deletions
|
|
@ -169,6 +169,10 @@ def screen_cursor_down(count: int) -> None:
|
|||
write(f'{CSI}{count}B')
|
||||
|
||||
|
||||
def screen_cursor_down1(count: int) -> None:
|
||||
write(f'{CSI}{count}E')
|
||||
|
||||
|
||||
def screen_report_key_encoding_flags() -> None:
|
||||
write(f'{CSI}?u')
|
||||
|
||||
|
|
@ -226,6 +230,10 @@ def report_device_attributes(mode: int, char: int) -> None:
|
|||
write(f'{x}c')
|
||||
|
||||
|
||||
def report_device_status(x: int, private: bool) -> None:
|
||||
write(f'{CSI}{"?" if private else ""}{x}n')
|
||||
|
||||
|
||||
def screen_decsace(mode: int) -> None:
|
||||
write(f'{CSI}{mode}*x')
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue