diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-04-24 06:40:30 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-04-24 06:40:51 +0100 |
commit | 8650f44340e2b4531a7121c7f05cab3e00e3f3c7 (patch) | |
tree | 9a99c99a05ce3f3460007f7e9f4c6497a9fd567f /tmux.h | |
parent | ca13208b6be90b3e9a909aeb3a0eec7078d4e3ca (diff) | |
download | rtmux-8650f44340e2b4531a7121c7f05cab3e00e3f3c7.tar.gz rtmux-8650f44340e2b4531a7121c7f05cab3e00e3f3c7.tar.bz2 rtmux-8650f44340e2b4531a7121c7f05cab3e00e3f3c7.zip |
Move terminal features into a single file.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1506,6 +1506,7 @@ struct client { char *term_name; int term_features; + char *term_type; char *ttyname; struct tty tty; @@ -2030,6 +2031,7 @@ const char *tty_term_describe(struct tty_term *, enum tty_code_code); void tty_add_features(int *, const char *, const char *); const char *tty_get_features(int); int tty_apply_features(struct tty_term *, int); +void tty_default_features(int *, const char *, u_int); /* tty-acs.c */ int tty_acs_needed(struct tty *); |