Skip to content

Commit

Permalink
Add some more command to replay commands
Browse files Browse the repository at this point in the history
  • Loading branch information
kovidgoyal committed Feb 5, 2025
1 parent d896d77 commit 0dd3ee0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions kitty/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')

Expand Down Expand Up @@ -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')

Expand Down

0 comments on commit 0dd3ee0

Please sign in to comment.