mirror of
https://github.com/tmux/tmux.git
synced 2024-12-13 01:48:47 +00:00
Wrap lines properly.
This commit is contained in:
parent
d00851cee1
commit
1e252b9e9a
12
input.c
12
input.c
@ -1,4 +1,4 @@
|
||||
/* $Id: input.c,v 1.20 2007-10-04 19:03:51 nicm Exp $ */
|
||||
/* $Id: input.c,v 1.21 2007-10-05 17:51:56 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -430,8 +430,18 @@ input_handle_character(u_char ch, struct input_ctx *ictx)
|
||||
|
||||
if (ictx->s->cx > ictx->s->sx - 1 || ictx->s->cy > ictx->s->sy - 1)
|
||||
return;
|
||||
|
||||
screen_write_character(ictx->s, ch);
|
||||
input_store8(ictx->b, ch);
|
||||
|
||||
if (ictx->s->cx == ictx->s->sx - 1) {
|
||||
ictx->s->cx = 0;
|
||||
screen_cursor_down_scroll(ictx->s);
|
||||
|
||||
input_store8(ictx->b, '\r');
|
||||
input_store8(ictx->b, '\n');
|
||||
} else
|
||||
ictx->s->cx++;
|
||||
}
|
||||
|
||||
void
|
||||
|
11
screen.c
11
screen.c
@ -1,4 +1,4 @@
|
||||
/* $Id: screen.c,v 1.21 2007-10-04 19:22:26 nicm Exp $ */
|
||||
/* $Id: screen.c,v 1.22 2007-10-05 17:51:56 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -284,20 +284,13 @@ screen_fill_lines(
|
||||
screen_fill_line(s, i, data, attr, colr);
|
||||
}
|
||||
|
||||
/* Write a single character to the screen at the cursor and move forward. */
|
||||
/* Write a single character to the screen at the cursor. */
|
||||
void
|
||||
screen_write_character(struct screen *s, u_char ch)
|
||||
{
|
||||
if (s->cx > screen_last_x(s)) {
|
||||
s->cx = 0;
|
||||
screen_cursor_down_scroll(s);
|
||||
}
|
||||
|
||||
s->grid_data[s->cy][s->cx] = ch;
|
||||
s->grid_attr[s->cy][s->cx] = s->attr;
|
||||
s->grid_colr[s->cy][s->cx] = s->colr;
|
||||
|
||||
s->cx++;
|
||||
}
|
||||
|
||||
/* Move cursor up and scroll if necessary. */
|
||||
|
Loading…
Reference in New Issue
Block a user