aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornicm <nicm>2016-11-28 17:50:00 +0000
committernicm <nicm>2016-11-28 17:50:00 +0000
commit9fc925ac51cb1a6217d46b36b286edd6c39d890f (patch)
tree25ed0fc4cc7d614e2d223e8817d614865239cb07
parent6f8cedb1bc147f2d05d63c2c085b2791fd841c19 (diff)
downloadrtmux-9fc925ac51cb1a6217d46b36b286edd6c39d890f.tar.gz
rtmux-9fc925ac51cb1a6217d46b36b286edd6c39d890f.tar.bz2
rtmux-9fc925ac51cb1a6217d46b36b286edd6c39d890f.zip
When comparing ocy to orlower in tty_cmd_cell, there is no need to add
yoff (because they are both already relative to the pane). Also fix some other minor nits.
-rw-r--r--tty.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/tty.c b/tty.c
index c217b0ff..2e4e9f4c 100644
--- a/tty.c
+++ b/tty.c
@@ -989,9 +989,8 @@ tty_cmd_linefeed(struct tty *tty, const struct tty_ctx *ctx)
if ((!tty_use_margin(tty) ||
tty_pane_full_width(tty, ctx)) &&
ctx->num != 0 &&
- !(tty->term->flags & TERM_EARLYWRAP)) {
+ !(tty->term->flags & TERM_EARLYWRAP))
return;
- }
tty_attributes(tty, &grid_default_cell, wp);
@@ -1004,7 +1003,7 @@ tty_cmd_linefeed(struct tty *tty, const struct tty_ctx *ctx)
* off the edge - if so, move the cursor back to the right.
*/
if (ctx->xoff + ctx->ocx > tty->rright)
- tty_cursor(tty, tty->rright, tty->rlower);
+ tty_cursor(tty, tty->rright, ctx->yoff + ctx->ocy);
else
tty_cursor_pane(tty, ctx, ctx->ocx, ctx->ocy);
@@ -1135,7 +1134,7 @@ tty_cmd_cell(struct tty *tty, const struct tty_ctx *ctx)
u_int cx, width;
if (ctx->xoff + ctx->ocx > tty->sx - 1 &&
- ctx->yoff + ctx->ocy == ctx->orlower &&
+ ctx->ocy == ctx->orlower &&
tty_pane_full_width(tty, ctx))
tty_region_pane(tty, ctx, ctx->orupper, ctx->orlower);
else
@@ -1145,7 +1144,7 @@ tty_cmd_cell(struct tty *tty, const struct tty_ctx *ctx)
/* Is the cursor in the very last position? */
width = ctx->cell->data.width;
if (ctx->ocx > wp->sx - width) {
- if (ctx->xoff != 0 || wp->sx != tty->sx) {
+ if (!tty_pane_full_width(tty, ctx)) {
/*
* The pane doesn't fill the entire line, the linefeed
* will already have happened, so just move the cursor.
@@ -1157,7 +1156,7 @@ tty_cmd_cell(struct tty *tty, const struct tty_ctx *ctx)
} else if (tty->cx < tty->sx) {
/*
* The cursor isn't in the last position already, so
- * move as far left as possible and redraw the last
+ * move as far right as possible and redraw the last
* cell to move into the last position.
*/
cx = screen_size_x(s) - ctx->last_cell.data.width;