diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2014-02-26 21:42:14 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2014-02-26 21:42:14 +0000 |
commit | 6d9f936ff22e9488bec90e22338a5543fbeb25fc (patch) | |
tree | eb3e79f12b21e092253a0313db3af7bb6a728e6f /input.c | |
parent | 594348440e42ac0c588369f1578b21792974600d (diff) | |
download | rtmux-6d9f936ff22e9488bec90e22338a5543fbeb25fc.tar.gz rtmux-6d9f936ff22e9488bec90e22338a5543fbeb25fc.tar.bz2 rtmux-6d9f936ff22e9488bec90e22338a5543fbeb25fc.zip |
Change secondary device attributes response to \033[>84;0;0c which is unique
for tmux.
Diffstat (limited to 'input.c')
-rw-r--r-- | input.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1147,7 +1147,7 @@ input_csi_dispatch(struct input_ctx *ictx) case INPUT_CSI_DA_TWO: switch (input_get(ictx, 0, 0, 0)) { case 0: - input_reply(ictx, "\033[>0;95;0c"); + input_reply(ictx, "\033[>84;0;0c"); break; default: log_debug("%s: unknown '%c'", __func__, ictx->ch); |