From 59430c1c148ddc95dab03ff37c67918a5e5ce2fc Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 11 Jun 2018 09:12:30 +0530 Subject: [PATCH] Add missing screen_delete_lines to client --- kitty/client.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/kitty/client.py b/kitty/client.py index b4750f209..3e8da20f0 100644 --- a/kitty/client.py +++ b/kitty/client.py @@ -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)