diff options
author | nicm <nicm> | 2019-05-13 20:10:23 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-05-13 20:10:23 +0000 |
commit | 1ee944a19def82cb62abf6ab92c17eb30df77a41 (patch) | |
tree | d579637a77ad94dd0dd1fc2ce91acabad7c51c42 /tty-term.c | |
parent | 1b0512aa7e942e0a641ece7d86e92cf943eb62be (diff) | |
download | rtmux-1ee944a19def82cb62abf6ab92c17eb30df77a41.tar.gz rtmux-1ee944a19def82cb62abf6ab92c17eb30df77a41.tar.bz2 rtmux-1ee944a19def82cb62abf6ab92c17eb30df77a41.zip |
Add support for overline (SGR 53), from Ricardo Banffy.
Diffstat (limited to 'tty-term.c')
-rw-r--r-- | tty-term.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -252,6 +252,7 @@ static const struct tty_term_code_entry tty_term_codes[] = { [TTYC_SMACS] = { TTYCODE_STRING, "smacs" }, [TTYC_SMCUP] = { TTYCODE_STRING, "smcup" }, [TTYC_SMKX] = { TTYCODE_STRING, "smkx" }, + [TTYC_SMOL] = { TTYCODE_STRING, "Smol" }, [TTYC_SMSO] = { TTYCODE_STRING, "smso" }, [TTYC_SMULX] = { TTYCODE_STRING, "Smulx" }, [TTYC_SMUL] = { TTYCODE_STRING, "smul" }, |