mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-24 01:08:10 +02:00
Add some more command to replay commands
This commit is contained in:
@@ -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')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user