Add a couple more functions to --replay-commands
This commit is contained in:
parent
3bc0f90a82
commit
6ae58e6882
@ -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…
x
Reference in New Issue
Block a user