diff options
author | Thomas Adam <thomas@xteddy.org> | 2022-03-24 12:01:11 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2022-03-24 12:01:11 +0000 |
commit | 5e491e79475425ca58316eac30a76038756a6499 (patch) | |
tree | c7e4318f1574fddb1541f3b75d9e09d58c2f37db /tmux.h | |
parent | 964deae422e4127a64f60fa3b54e2bf47b8e074c (diff) | |
parent | 792d13af49f2550a9a8d11b0099528628957a1a0 (diff) | |
download | rtmux-5e491e79475425ca58316eac30a76038756a6499.tar.gz rtmux-5e491e79475425ca58316eac30a76038756a6499.tar.bz2 rtmux-5e491e79475425ca58316eac30a76038756a6499.zip |
Merge branch 'obsd-master' into master
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -540,6 +540,7 @@ enum tty_code_code { TTYC_SMULX, TTYC_SMXX, TTYC_SS, + TTYC_SWD, TTYC_SYNC, TTYC_TC, TTYC_TSL, @@ -1709,6 +1710,7 @@ struct client { struct format_job_tree *jobs; char *title; + char *path; const char *cwd; char *term_name; @@ -2259,6 +2261,7 @@ void tty_start_tty(struct tty *); void tty_send_requests(struct tty *); void tty_stop_tty(struct tty *); void tty_set_title(struct tty *, const char *); +void tty_set_path(struct tty *, const char *); void tty_update_mode(struct tty *, int, struct screen *); void tty_draw_line(struct tty *, struct screen *, u_int, u_int, u_int, u_int, u_int, const struct grid_cell *, struct colour_palette *); |