diff options
author | 2012-03-17 17:36:03 +0000 | |
---|---|---|
committer | 2012-03-17 17:36:03 +0000 | |
commit | e5878a5d2a8ce9ec88a96ab5ccc8ce76111a0898 (patch) | |
tree | 5f971bf3f98aaf3cf57d69fab9d366dadbd4aa3f /usr.bin/tmux/tty.c | |
parent | some updates to reflect reality; prompted by a diff from Daniel Bolgheroni (diff) | |
download | wireguard-openbsd-e5878a5d2a8ce9ec88a96ab5ccc8ce76111a0898.tar.xz wireguard-openbsd-e5878a5d2a8ce9ec88a96ab5ccc8ce76111a0898.zip |
Revert screen-write.c r1.54 and fix the bug properly. After wrapping a
line in a pane, the cursor needs to move to the next line unless it
scrolled.
Diffstat (limited to 'usr.bin/tmux/tty.c')
-rw-r--r-- | usr.bin/tmux/tty.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.bin/tmux/tty.c b/usr.bin/tmux/tty.c index 12810623524..135d22bde50 100644 --- a/usr.bin/tmux/tty.c +++ b/usr.bin/tmux/tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty.c,v 1.121 2012/03/15 10:36:00 nicm Exp $ */ +/* $OpenBSD: tty.c,v 1.122 2012/03/17 17:36:03 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -1000,7 +1000,10 @@ tty_cmd_cell(struct tty *tty, const struct tty_ctx *ctx) * The pane doesn't fill the entire line, the linefeed * will already have happened, so just move the cursor. */ - tty_cursor_pane(tty, ctx, 0, ctx->ocy + 1); + if (ctx->ocy != wp->yoff + wp->sy) + tty_cursor_pane(tty, ctx, 0, ctx->ocy + 1); + else + tty_cursor_pane(tty, ctx, 0, ctx->ocy); } else if (tty->cx < tty->sx) { /* * The cursor isn't in the last position already, so |