diff options
author | nicm <nicm> | 2017-06-30 22:24:08 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-06-30 22:24:08 +0000 |
commit | 7247553c77eb9dae8eab1b7ee12b10fc70cca69c (patch) | |
tree | 3df56d87d49f91795a63b421f6cdf3796d1f0f0e /tmux.h | |
parent | 8b0fd63ddb3c71f6b2afa903b5a896a4dd298dee (diff) | |
download | rtmux-7247553c77eb9dae8eab1b7ee12b10fc70cca69c.tar.gz rtmux-7247553c77eb9dae8eab1b7ee12b10fc70cca69c.tar.bz2 rtmux-7247553c77eb9dae8eab1b7ee12b10fc70cca69c.zip |
Try to show a better preview of sessions and windows in tree mode.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2019,7 +2019,8 @@ void screen_write_putc(struct screen_write_ctx *, const struct grid_cell *, u_char); void screen_write_copy(struct screen_write_ctx *, struct screen *, u_int, u_int, u_int, u_int, bitstr_t *, const struct grid_cell *); -void screen_write_line(struct screen_write_ctx *, u_int, int, int); +void screen_write_hline(struct screen_write_ctx *, u_int, int, int); +void screen_write_vline(struct screen_write_ctx *, u_int, int, int); void screen_write_box(struct screen_write_ctx *, u_int, u_int); void screen_write_preview(struct screen_write_ctx *, struct screen *, u_int, u_int); |