diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-27 22:12:14 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-27 22:12:14 +0000 |
commit | 43c99c2fab409e41f4c970f4f9eb0079df88a78e (patch) | |
tree | 22723d7d762a1ea25e1cd5a550514afbb5ce933b | |
parent | c6384a765b1113fbff54bc3f0126b3a578730b36 (diff) | |
download | rtmux-43c99c2fab409e41f4c970f4f9eb0079df88a78e.tar.gz rtmux-43c99c2fab409e41f4c970f4f9eb0079df88a78e.tar.bz2 rtmux-43c99c2fab409e41f4c970f4f9eb0079df88a78e.zip |
Clear current line properly on clear eos.
-rw-r--r-- | TODO | 1 | ||||
-rw-r--r-- | input.c | 5 |
2 files changed, 4 insertions, 2 deletions
@@ -63,3 +63,4 @@ - restore term cap checks - anything which uses cmd_{send,recv}_string will break if the string is split. string length should be part of the command size +- echo \\033[35\;46m\\033[2J last line quirk (with C-b r) @@ -1,4 +1,4 @@ -/* $Id: input.c,v 1.39 2007-11-27 19:23:33 nicm Exp $ */ +/* $Id: input.c,v 1.40 2007-11-27 22:12:14 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -836,7 +836,8 @@ input_handle_sequence_ed(struct input_ctx *ictx) screen_display_fill_cursor_eos( s, SCREEN_DEFDATA, s->attr, s->colr); - for (i = s->cy; i < screen_size_y(s); i++) { + input_write(ictx, TTY_CLEARENDOFLINE); + for (i = s->cy + 1; i < screen_size_y(s); i++) { input_write(ictx, TTY_CURSORMOVE, i, 0); input_write(ictx, TTY_CLEARENDOFLINE); } |