mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-06-25 18:37:50 +00:00
Add missing screen_delete_lines to client
This commit is contained in:
parent
e55cae6192
commit
59430c1c14
1 changed files with 4 additions and 0 deletions
|
|
@ -86,6 +86,10 @@ def screen_erase_in_line(how, private):
|
|||
write(CSI + ('?' if private else '') + str(how) + 'K')
|
||||
|
||||
|
||||
def screen_delete_lines(num):
|
||||
write(CSI + str(num) + 'M')
|
||||
|
||||
|
||||
def screen_cursor_up2(count):
|
||||
write(CSI + '%dA' % count)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue