aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2020-04-24 06:40:30 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2020-04-24 06:40:51 +0100
commit8650f44340e2b4531a7121c7f05cab3e00e3f3c7 (patch)
tree9a99c99a05ce3f3460007f7e9f4c6497a9fd567f /tmux.h
parentca13208b6be90b3e9a909aeb3a0eec7078d4e3ca (diff)
downloadrtmux-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.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tmux.h b/tmux.h
index 6cbc0d81..85276aea 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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 *);