diff options
author | nicm <nicm> | 2017-02-06 22:05:11 +0000 |
---|---|---|
committer | nicm <nicm> | 2017-02-06 22:05:11 +0000 |
commit | d60e585d9e6f01c06b936f550ebf889453a8720f (patch) | |
tree | 7b53199fe85ac80f4880f4932bd7896860c97999 /tty-term.c | |
parent | 68e04907de6a13933805d3437872bd859f4ce6c1 (diff) | |
download | rtmux-d60e585d9e6f01c06b936f550ebf889453a8720f.tar.gz rtmux-d60e585d9e6f01c06b936f550ebf889453a8720f.tar.bz2 rtmux-d60e585d9e6f01c06b936f550ebf889453a8720f.zip |
Use DECFRA on VT420 compatible terminals (so, xterm) and ED on all
others for clearing panes.
Diffstat (limited to 'tty-term.c')
-rw-r--r-- | tty-term.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -84,6 +84,7 @@ static const struct tty_term_code_entry tty_term_codes[] = { [TTYC_DL1] = { TTYCODE_STRING, "dl1" }, [TTYC_E3] = { TTYCODE_STRING, "E3" }, [TTYC_ECH] = { TTYCODE_STRING, "ech" }, + [TTYC_ED] = { TTYCODE_STRING, "ed" }, [TTYC_EL] = { TTYCODE_STRING, "el" }, [TTYC_EL1] = { TTYCODE_STRING, "el1" }, [TTYC_ENACS] = { TTYCODE_STRING, "enacs" }, |