diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-04-02 21:08:15 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-04-02 21:08:15 +0000 |
commit | dbf52facd2fa678a9705428d881a9d99188d401d (patch) | |
tree | d7d1dea43e8a9fe1eba5f813567765b0b3f9a2a2 /tmux.h | |
parent | 84cde92c8fa4f8b6e777c9c6608312d7dbc33ced (diff) | |
download | rtmux-dbf52facd2fa678a9705428d881a9d99188d401d.tar.gz rtmux-dbf52facd2fa678a9705428d881a9d99188d401d.tar.bz2 rtmux-dbf52facd2fa678a9705428d881a9d99188d401d.zip |
Change scroll/pane redraws to only redraw the single pane affected rather than
the entire window.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $Id: tmux.h,v 1.296 2009-04-02 20:30:20 nicm Exp $ */ +/* $Id: tmux.h,v 1.297 2009-04-02 21:08:14 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -656,6 +656,7 @@ struct window_pane { int flags; #define PANE_HIDDEN 0x1 #define PANE_RESTART 0x2 +#define PANE_REDRAW 0x4 char *cmd; char *cwd; @@ -1466,6 +1467,7 @@ void screen_write_cell( /* screen-redraw.c */ void screen_redraw_screen(struct client *); +void screen_redraw_pane(struct client *, struct window_pane *); void screen_redraw_status(struct client *); /* screen.c */ |