diff options
author | nicm <nicm> | 2022-06-30 09:55:53 +0000 |
---|---|---|
committer | nicm <nicm> | 2022-06-30 09:55:53 +0000 |
commit | cdacc12ce305ad2f3e65e2a01328a988e3200b51 (patch) | |
tree | c886b2047969edb95bb711b7dccc9ee4fa29b5ec /screen-redraw.c | |
parent | b22edcf3a5e6271625141992c1a842d295c8b89f (diff) | |
download | rtmux-cdacc12ce305ad2f3e65e2a01328a988e3200b51.tar.gz rtmux-cdacc12ce305ad2f3e65e2a01328a988e3200b51.tar.bz2 rtmux-cdacc12ce305ad2f3e65e2a01328a988e3200b51.zip |
Add support for OSC 8 hyperlinks (a VTE extension now supported by other
terminals such as iTerm2). Originally written by me then extended and
completed by first Will Noble and later Jeff Chiang. GitHub issues 911,
2621, 2890, 3240.
Diffstat (limited to 'screen-redraw.c')
-rw-r--r-- | screen-redraw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/screen-redraw.c b/screen-redraw.c index c4906ab8..470135cc 100644 --- a/screen-redraw.c +++ b/screen-redraw.c @@ -738,7 +738,7 @@ screen_redraw_draw_borders_cell(struct screen_redraw_ctx *ctx, u_int i, u_int j) } } - tty_cell(tty, &gc, &grid_default_cell, NULL); + tty_cell(tty, &gc, &grid_default_cell, NULL, NULL); if (isolates) tty_puts(tty, START_ISOLATE); } |