mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-08 22:28:24 +02:00
Add missing screen_delete_lines to client
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user