Add repeat character to client.py

This commit is contained in:
Kovid Goyal 2021-01-02 12:49:33 +05:30
parent 9ae198ef8f
commit bc8a351558
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -120,6 +120,10 @@ def screen_report_colors() -> None:
write(CSI + '#R')
def screen_repeat_character(num: int) -> None:
write(CSI + '%db' % num)
def screen_insert_characters(count: int) -> None:
write(CSI + '%d@' % count)