Add a couple more functions to --replay-commands
This commit is contained in:
parent
3bc0f90a82
commit
6ae58e6882
1 changed files with 8 additions and 0 deletions
|
|
@ -106,6 +106,14 @@ def screen_backspace():
|
|||
write('\x08')
|
||||
|
||||
|
||||
def screen_set_cursor(mode, secondary):
|
||||
write(CSI + '%d q' % secondary)
|
||||
|
||||
|
||||
def screen_insert_lines(num):
|
||||
write(CSI + '%dL' % num)
|
||||
|
||||
|
||||
def draw(*a):
|
||||
write(' '.join(a))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue