diff options
author | nicm <nicm> | 2022-06-30 09:55:53 +0000 |
---|---|---|
committer | nicm <nicm> | 2022-06-30 09:55:53 +0000 |
commit | cdacc12ce305ad2f3e65e2a01328a988e3200b51 (patch) | |
tree | c886b2047969edb95bb711b7dccc9ee4fa29b5ec /tty-term.c | |
parent | b22edcf3a5e6271625141992c1a842d295c8b89f (diff) | |
download | rtmux-cdacc12ce305ad2f3e65e2a01328a988e3200b51.tar.gz rtmux-cdacc12ce305ad2f3e65e2a01328a988e3200b51.tar.bz2 rtmux-cdacc12ce305ad2f3e65e2a01328a988e3200b51.zip |
Add support for OSC 8 hyperlinks (a VTE extension now supported by other
terminals such as iTerm2). Originally written by me then extended and
completed by first Will Noble and later Jeff Chiang. GitHub issues 911,
2621, 2890, 3240.
Diffstat (limited to 'tty-term.c')
-rw-r--r-- | tty-term.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -100,6 +100,7 @@ static const struct tty_term_code_entry tty_term_codes[] = { [TTYC_ENFCS] = { TTYCODE_STRING, "Enfcs" }, [TTYC_ENMG] = { TTYCODE_STRING, "Enmg" }, [TTYC_FSL] = { TTYCODE_STRING, "fsl" }, + [TTYC_HLS] = { TTYCODE_STRING, "Hls" }, [TTYC_HOME] = { TTYCODE_STRING, "home" }, [TTYC_HPA] = { TTYCODE_STRING, "hpa" }, [TTYC_ICH1] = { TTYCODE_STRING, "ich1" }, |