aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authornicm <nicm>2019-11-15 11:16:53 +0000
committernicm <nicm>2019-11-15 11:16:53 +0000
commitf3dc38dcae472286c7d7c2708e4dbfe70a6c2d57 (patch)
tree7a2013bf4c2df1a44c234386f4eaaf5c4123351a /tmux.h
parent1f966c495ca021858fdba00f6619d024ecbc41d4 (diff)
downloadrtmux-f3dc38dcae472286c7d7c2708e4dbfe70a6c2d57.tar.gz
rtmux-f3dc38dcae472286c7d7c2708e4dbfe70a6c2d57.tar.bz2
rtmux-f3dc38dcae472286c7d7c2708e4dbfe70a6c2d57.zip
Handle OSC 7 (a VTE extension) and put the result in a new format (pane_path).
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index 894a9820..ac57dbf3 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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);