Handle OSC 7 (a VTE extension) and put the result in a new format (pane_path).

This commit is contained in:
nicm
2019-11-15 11:16:53 +00:00
parent 1f966c495c
commit f3dc38dcae
5 changed files with 23 additions and 4 deletions

View File

@ -159,6 +159,14 @@ screen_set_title(struct screen *s, const char *title)
utf8_stravis(&s->title, title, VIS_OCTAL|VIS_CSTYLE|VIS_TAB|VIS_NL);
}
/* Set screen path. */
void
screen_set_path(struct screen *s, const char *path)
{
free(s->path);
utf8_stravis(&s->path, path, VIS_OCTAL|VIS_CSTYLE|VIS_TAB|VIS_NL);
}
/* Push the current title onto the stack. */
void
screen_push_title(struct screen *s)