Symbol: hyperlinks
usr.bin/tmux/cmd-capture-pane.c
225
if (s->hyperlinks == NULL || (~gl->flags & GRID_LINE_HYPERLINK))
usr.bin/tmux/cmd-capture-pane.c
239
if (!hyperlinks_get(s->hyperlinks, gc.link, &uri, NULL, NULL))
usr.bin/tmux/cmd-capture-pane.c
263
int show_flags, hyperlinks;
usr.bin/tmux/cmd-capture-pane.c
346
hyperlinks = args_has(args, 'H');
usr.bin/tmux/cmd-capture-pane.c
347
if (hyperlinks)
usr.bin/tmux/cmd-capture-pane.c
351
if (hyperlinks) {
usr.bin/tmux/cmd-capture-pane.c
358
if (hyperlinks && linelen == 0) {
usr.bin/tmux/cmd-capture-pane.c
83
struct hyperlinks *hl = s->hyperlinks;
usr.bin/tmux/format-draw.c
713
struct hyperlinks *hl = os->hyperlinks;
usr.bin/tmux/format.c
7040
if (s->hyperlinks == NULL || gc.link == 0)
usr.bin/tmux/format.c
7042
if (!hyperlinks_get(s->hyperlinks, gc.link, &uri, NULL, NULL))
usr.bin/tmux/grid.c
1111
if (sc != NULL && sc->hyperlinks != NULL && lastgc->link != gc->link) {
usr.bin/tmux/grid.c
1112
if (hyperlinks_get(sc->hyperlinks, gc->link, &uri, &id, NULL)) {
usr.bin/tmux/hyperlinks.c
119
struct hyperlinks *hl = hlu->tree;
usr.bin/tmux/hyperlinks.c
135
hyperlinks_put(struct hyperlinks *hl, const char *uri_in,
usr.bin/tmux/hyperlinks.c
187
hyperlinks_get(struct hyperlinks *hl, u_int inner, const char **uri_out,
usr.bin/tmux/hyperlinks.c
206
struct hyperlinks *
usr.bin/tmux/hyperlinks.c
209
struct hyperlinks *hl;
usr.bin/tmux/hyperlinks.c
220
struct hyperlinks *
usr.bin/tmux/hyperlinks.c
221
hyperlinks_copy(struct hyperlinks *hl)
usr.bin/tmux/hyperlinks.c
229
hyperlinks_reset(struct hyperlinks *hl)
usr.bin/tmux/hyperlinks.c
239
hyperlinks_free(struct hyperlinks *hl)
usr.bin/tmux/hyperlinks.c
51
struct hyperlinks *tree;
usr.bin/tmux/input.c
2941
struct hyperlinks *hl = ictx->ctx.s->hyperlinks;
usr.bin/tmux/popup.c
228
if (pd->s.hyperlinks != NULL) {
usr.bin/tmux/popup.c
229
hyperlinks_free(s.hyperlinks);
usr.bin/tmux/popup.c
230
s.hyperlinks = hyperlinks_copy(pd->s.hyperlinks);
usr.bin/tmux/popup.c
255
style_ctx.hyperlinks = s.hyperlinks;
usr.bin/tmux/screen-redraw.c
1123
style_ctx.hyperlinks = s->hyperlinks;
usr.bin/tmux/screen-write.c
284
ttyctx->style_ctx.hyperlinks = ctx->s->hyperlinks;
usr.bin/tmux/screen.c
137
if (s->hyperlinks == NULL)
usr.bin/tmux/screen.c
138
s->hyperlinks = hyperlinks_init();
usr.bin/tmux/screen.c
140
hyperlinks_reset(s->hyperlinks);
usr.bin/tmux/screen.c
159
if (s->hyperlinks != NULL)
usr.bin/tmux/screen.c
160
hyperlinks_free(s->hyperlinks);
usr.bin/tmux/screen.c
98
s->hyperlinks = NULL;
usr.bin/tmux/style.c
54
static struct hyperlinks *style_hyperlinks;
usr.bin/tmux/tmux.h
1073
struct hyperlinks *hyperlinks;
usr.bin/tmux/tmux.h
1711
struct hyperlinks *hyperlinks;
usr.bin/tmux/tmux.h
4180
struct hyperlinks *hyperlinks_init(void);
usr.bin/tmux/tmux.h
4181
struct hyperlinks *hyperlinks_copy(struct hyperlinks *);
usr.bin/tmux/tmux.h
57
struct hyperlinks;
usr.bin/tmux/tty-draw.c
138
default_style_ctx.hyperlinks = s->hyperlinks;
usr.bin/tmux/tty.c
2456
struct hyperlinks *hl)
usr.bin/tmux/tty.c
2619
tty_hyperlink(tty, gc, style_ctx->hyperlinks);
usr.bin/tmux/window-client.c
90
WINDOW_CLIENT_FEATURE(hyperlinks) " "
usr.bin/tmux/window-copy.c
627
if (base->hyperlinks != NULL) {
usr.bin/tmux/window-copy.c
628
hyperlinks_free(data->screen.hyperlinks);
usr.bin/tmux/window-copy.c
629
data->screen.hyperlinks = hyperlinks_copy(base->hyperlinks);