From c34a79b152e1d27ed87417e6a940358990ab9e79 Mon Sep 17 00:00:00 2001 From: nicm Date: Tue, 15 Nov 2016 15:17:28 +0000 Subject: 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). --- tmux.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tmux.h') 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); -- cgit