diff options
author | nicm <nicm> | 2016-10-12 13:24:07 +0000 |
---|---|---|
committer | nicm <nicm> | 2016-10-12 13:24:07 +0000 |
commit | 4160df4ca4035c8caafce7650d0fcbcccc391f80 (patch) | |
tree | 4900cee4d755e18393587cb14cc4e8f662764504 /tmux.h | |
parent | 68bebe1fb7dfe5d152a2734c5bd572b1db641a4c (diff) | |
download | rtmux-4160df4ca4035c8caafce7650d0fcbcccc391f80.tar.gz rtmux-4160df4ca4035c8caafce7650d0fcbcccc391f80.tar.bz2 rtmux-4160df4ca4035c8caafce7650d0fcbcccc391f80.zip |
Redraw selection in tty_draw_line, so it appears when redrawing whole
pane. Reported by Theo Buehler.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2060,6 +2060,8 @@ void screen_set_selection(struct screen *, u_int, u_int, u_int, u_int, u_int, struct grid_cell *); void screen_clear_selection(struct screen *); int screen_check_selection(struct screen *, u_int, u_int); +void screen_select_cell(struct screen *, struct grid_cell *, + const struct grid_cell *); /* window.c */ extern struct windows windows; |