diff options
author | nicm <nicm> | 2016-11-15 15:17:28 +0000 |
---|---|---|
committer | nicm <nicm> | 2016-11-15 15:17:28 +0000 |
commit | c34a79b152e1d27ed87417e6a940358990ab9e79 (patch) | |
tree | 3f2ebd16172f71daca9c319c5384cecf140f7605 /tmux.h | |
parent | d81a5c630f53e2513feb29815c03f4c90435e450 (diff) | |
download | rtmux-c34a79b152e1d27ed87417e6a940358990ab9e79.tar.gz rtmux-c34a79b152e1d27ed87417e6a940358990ab9e79.tar.bz2 rtmux-c34a79b152e1d27ed87417e6a940358990ab9e79.zip |
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).
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |