mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-23 16:58:09 +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')
|
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)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user