Add repeat character to client.py
This commit is contained in:
parent
9ae198ef8f
commit
bc8a351558
1 changed files with 4 additions and 0 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue