Add missing screen_delete_lines to client

This commit is contained in:
Kovid Goyal 2018-06-11 09:12:30 +05:30
parent e55cae6192
commit 59430c1c14
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -86,6 +86,10 @@ def screen_erase_in_line(how, private):
write(CSI + ('?' if private else '') + str(how) + 'K') write(CSI + ('?' if private else '') + str(how) + 'K')
def screen_delete_lines(num):
write(CSI + str(num) + 'M')
def screen_cursor_up2(count): def screen_cursor_up2(count):
write(CSI + '%dA' % count) write(CSI + '%dA' % count)