diff options
author | Thomas Adam <thomas@xteddy.org> | 2016-11-24 16:01:11 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2016-11-24 16:01:11 +0000 |
commit | a02d95a313e0a289a46c2b77eb59d6c6d1488012 (patch) | |
tree | 9cf378f915bd13b7077bef7f20c1de5f086ad419 /tmux.h | |
parent | 8a8001350db320f6c8adfef161f96d0abb67e2b4 (diff) | |
parent | 84319aa8f013238ccc1bbd6ea44b9e6be7c58db2 (diff) | |
download | rtmux-a02d95a313e0a289a46c2b77eb59d6c6d1488012.tar.gz rtmux-a02d95a313e0a289a46c2b77eb59d6c6d1488012.tar.bz2 rtmux-a02d95a313e0a289a46c2b77eb59d6c6d1488012.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -683,6 +683,8 @@ LIST_HEAD(joblist, job); /* Screen selection. */ struct screen_sel { int flag; + int hidden; + int rectflag; enum { LINE_SEL_NONE, @@ -2057,6 +2059,7 @@ void screen_resize(struct screen *, u_int, u_int, int); 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 *); +void screen_hide_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 *); |