diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2014-03-31 21:32:01 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2014-03-31 21:32:01 +0000 |
commit | 9d444019adc257a74dfd121393134c973f39566b (patch) | |
tree | f2b096d842df19b3c3fba3edeb02b9f09ac85a0c | |
parent | d3d16a9e695e3f7d6d26651d5cef39889db936f7 (diff) |
Change secondary device attributes response to \033[>84;0;0c which is
unique for tmux.
-rw-r--r-- | usr.bin/tmux/input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/input.c b/usr.bin/tmux/input.c index abf8fe1d0cf..0a01cbfe7bc 100644 --- a/usr.bin/tmux/input.c +++ b/usr.bin/tmux/input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: input.c,v 1.65 2014/01/31 11:17:20 nicm Exp $ */ +/* $OpenBSD: input.c,v 1.66 2014/03/31 21:32:00 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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); |