diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-11-15 11:16:54 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-11-15 11:16:54 +0000 |
commit | 701b6fdd62d028511117d4684d2ebcd667c93aa7 (patch) | |
tree | 606577c4281310a977816f4cffd95d370cf3c18a /usr.bin/tmux/tmux.h | |
parent | a9a7c8b8e83de9e49fd4c9ef973e9bbe46739811 (diff) |
Handle OSC 7 (a VTE extension) and put the result in a new format (pane_path).
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 3ac08d2973a..6da8e8bb6d6 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.931 2019/11/14 15:37:19 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.932 2019/11/15 11:16:53 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -706,6 +706,7 @@ struct screen_sel; struct screen_titles; struct screen { char *title; + char *path; struct screen_titles *titles; struct grid *grid; /* grid data */ @@ -2359,6 +2360,7 @@ void screen_reset_tabs(struct screen *); void screen_set_cursor_style(struct screen *, u_int); void screen_set_cursor_colour(struct screen *, const char *); void screen_set_title(struct screen *, const char *); +void screen_set_path(struct screen *, const char *); void screen_push_title(struct screen *); void screen_pop_title(struct screen *); void screen_resize(struct screen *, u_int, u_int, int); |