summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicm <nicm>2016-11-15 15:17:28 +0000
committernicm <nicm>2016-11-15 15:17:28 +0000
commitc34a79b152e1d27ed87417e6a940358990ab9e79 (patch)
tree3f2ebd16172f71daca9c319c5384cecf140f7605
parentd81a5c630f53e2513feb29815c03f4c90435e450 (diff)
Turn on margins, with a couple of fixes (only limit to the pane for line
feeds, and do not move cursor to end for full width panes).
-rw-r--r--server-client.c4
-rw-r--r--tmux.h4
-rw-r--r--tty.c48
3 files changed, 38 insertions, 18 deletions
diff --git a/server-client.c b/server-client.c
index 29f3e08b..e6ca8a42 100644
--- a/server-client.c
+++ b/server-client.c
@@ -1003,8 +1003,8 @@ server_client_reset_state(struct client *c)
if (c->flags & (CLIENT_CONTROL|CLIENT_SUSPENDED))
return;
- tty_region(&c->tty, 0, c->tty.sy - 1);
- tty_margin(&c->tty, 0, c->tty.sx - 1);
+ tty_region_off(&c->tty);
+ tty_margin_off(&c->tty);
status = options_get_number(oo, "status");
if (!window_pane_visible(wp) || wp->yoff + s->cy >= c->tty.sy - status)
diff --git a/tmux.h b/tmux.h
index e2d49962..41c6a092 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1664,8 +1664,8 @@ void tty_raw(struct tty *, const char *);
void tty_attributes(struct tty *, const struct grid_cell *,
const struct window_pane *);
void tty_reset(struct tty *);
-void tty_region(struct tty *, u_int, u_int);
-void tty_margin(struct tty *, u_int, u_int);
+void tty_region_off(struct tty *);
+void tty_margin_off(struct tty *);
void tty_cursor(struct tty *, u_int, u_int);
void tty_putcode(struct tty *, enum tty_code_code);
void tty_putcode1(struct tty *, enum tty_code_code, int);
diff --git a/tty.c b/tty.c
index a2a3ec42..6fade4c9 100644
--- a/tty.c
+++ b/tty.c
@@ -55,7 +55,9 @@ static void tty_colours_bg(struct tty *, const struct grid_cell *);
static void tty_region_pane(struct tty *, const struct tty_ctx *, u_int,
u_int);
+static void tty_region(struct tty *, u_int, u_int);
static void tty_margin_pane(struct tty *, const struct tty_ctx *);
+static void tty_margin(struct tty *, u_int, u_int);
static int tty_large_region(struct tty *, const struct tty_ctx *);
static int tty_fake_bce(const struct tty *, const struct window_pane *,
u_int);
@@ -73,7 +75,7 @@ static void tty_default_attributes(struct tty *, const struct window_pane *,
#define tty_use_acs(tty) \
(tty_term_has((tty)->term, TTYC_ACSC) && !((tty)->flags & TTY_UTF8))
#define tty_use_margin(tty) \
- (0 && (tty)->term_type == TTY_VT420)
+ ((tty)->term_type == TTY_VT420)
#define tty_pane_full_width(tty, ctx) \
((ctx)->xoff == 0 && screen_size_x((ctx)->wp->screen) >= (tty)->sx)
@@ -153,8 +155,8 @@ tty_resize(struct tty *tty)
*/
if (tty->flags & TTY_STARTED) {
tty_cursor(tty, 0, 0);
- tty_region(tty, 0, tty->sy - 1);
- tty_margin(tty, 0, tty->sx - 1);
+ tty_region_off(tty);
+ tty_margin_off(tty);
}
return (1);
@@ -696,6 +698,9 @@ tty_draw_line(struct tty *tty, const struct window_pane *wp,
tty->flags |= TTY_NOCURSOR;
tty_update_mode(tty, tty->mode, s);
+ tty_region_off(tty);
+ tty_margin_off(tty);
+
sx = screen_size_x(s);
if (sx > s->grid->linedata[s->grid->hsize + py].cellsize)
sx = s->grid->linedata[s->grid->hsize + py].cellsize;
@@ -855,7 +860,7 @@ tty_cmd_insertline(struct tty *tty, const struct tty_ctx *ctx)
tty_default_attributes(tty, ctx->wp, ctx->bg);
tty_region_pane(tty, ctx, ctx->orupper, ctx->orlower);
- tty_margin_pane(tty, ctx);
+ tty_margin_off(tty);
tty_cursor_pane(tty, ctx, ctx->ocx, ctx->ocy);
tty_emulate_repeat(tty, TTYC_IL, TTYC_IL1, ctx->num);
@@ -875,7 +880,7 @@ tty_cmd_deleteline(struct tty *tty, const struct tty_ctx *ctx)
tty_default_attributes(tty, ctx->wp, ctx->bg);
tty_region_pane(tty, ctx, ctx->orupper, ctx->orlower);
- tty_margin_pane(tty, ctx);
+ tty_margin_off(tty);
tty_cursor_pane(tty, ctx, ctx->ocx, ctx->ocy);
tty_emulate_repeat(tty, TTYC_DL, TTYC_DL1, ctx->num);
@@ -952,7 +957,7 @@ tty_cmd_reverseindex(struct tty *tty, const struct tty_ctx *ctx)
tty_attributes(tty, &grid_default_cell, ctx->wp);
tty_region_pane(tty, ctx, ctx->orupper, ctx->orlower);
- tty_margin_pane(tty, ctx);
+ tty_margin_off(tty);
tty_cursor_pane(tty, ctx, ctx->ocx, ctx->orupper);
tty_putcode(tty, TTYC_RI);
@@ -981,7 +986,8 @@ tty_cmd_linefeed(struct tty *tty, const struct tty_ctx *ctx)
* using margins, don't do anything - the cursor can just be moved
* to the last cell and wrap naturally.
*/
- if (!tty_use_margin(tty) &&
+ if ((!tty_use_margin(tty) ||
+ tty_pane_full_width(tty, ctx)) &&
ctx->num != 0 &&
!(tty->term->flags & TERM_EARLYWRAP)) {
return;
@@ -1015,7 +1021,7 @@ tty_cmd_clearendofscreen(struct tty *tty, const struct tty_ctx *ctx)
tty_default_attributes(tty, wp, ctx->bg);
tty_region_pane(tty, ctx, 0, screen_size_y(s) - 1);
- tty_margin_pane(tty, ctx);
+ tty_margin_off(tty);
tty_cursor_pane(tty, ctx, ctx->ocx, ctx->ocy);
if (tty_pane_full_width(tty, ctx) &&
@@ -1051,7 +1057,7 @@ tty_cmd_clearstartofscreen(struct tty *tty, const struct tty_ctx *ctx)
tty_attributes(tty, &grid_default_cell, wp);
tty_region_pane(tty, ctx, 0, screen_size_y(s) - 1);
- tty_margin_pane(tty, ctx);
+ tty_margin_off(tty);
tty_cursor_pane(tty, ctx, 0, 0);
if (tty_pane_full_width(tty, ctx) &&
@@ -1081,7 +1087,7 @@ tty_cmd_clearscreen(struct tty *tty, const struct tty_ctx *ctx)
tty_default_attributes(tty, wp, ctx->bg);
tty_region_pane(tty, ctx, 0, screen_size_y(s) - 1);
- tty_margin_pane(tty, ctx);
+ tty_margin_off(tty);
tty_cursor_pane(tty, ctx, 0, 0);
if (tty_pane_full_width(tty, ctx) &&
@@ -1112,7 +1118,7 @@ tty_cmd_alignmenttest(struct tty *tty, const struct tty_ctx *ctx)
tty_attributes(tty, &grid_default_cell, wp);
tty_region_pane(tty, ctx, 0, screen_size_y(s) - 1);
- tty_margin_pane(tty, ctx);
+ tty_margin_off(tty);
for (j = 0; j < screen_size_y(s); j++) {
tty_cursor_pane(tty, ctx, 0, j);
@@ -1130,7 +1136,7 @@ tty_cmd_cell(struct tty *tty, const struct tty_ctx *ctx)
if (ctx->ocy == ctx->orlower)
tty_region_pane(tty, ctx, ctx->orupper, ctx->orlower);
- tty_margin_pane(tty, ctx);
+ tty_margin_off(tty);
/* Is the cursor in the very last position? */
width = ctx->cell->data.width;
@@ -1258,6 +1264,13 @@ tty_reset(struct tty *tty)
memcpy(gc, &grid_default_cell, sizeof *gc);
}
+/* Turn off margin. */
+void
+tty_region_off(struct tty *tty)
+{
+ tty_region(tty, 0, tty->sy - 1);
+}
+
/* Set region inside pane. */
static void
tty_region_pane(struct tty *tty, const struct tty_ctx *ctx, u_int rupper,
@@ -1267,7 +1280,7 @@ tty_region_pane(struct tty *tty, const struct tty_ctx *ctx, u_int rupper,
}
/* Set region at absolute position. */
-void
+static void
tty_region(struct tty *tty, u_int rupper, u_int rlower)
{
if (tty->rlower == rlower && tty->rupper == rupper)
@@ -1291,6 +1304,13 @@ tty_region(struct tty *tty, u_int rupper, u_int rlower)
tty_cursor(tty, 0, 0);
}
+/* Turn off margin. */
+void
+tty_margin_off(struct tty *tty)
+{
+ tty_margin(tty, 0, tty->sx - 1);
+}
+
/* Set margin inside pane. */
static void
tty_margin_pane(struct tty *tty, const struct tty_ctx *ctx)
@@ -1299,7 +1319,7 @@ tty_margin_pane(struct tty *tty, const struct tty_ctx *ctx)
}
/* Set margin at absolute position. */
-void
+static void
tty_margin(struct tty *tty, u_int rleft, u_int rright)
{
char s[64];