From b9cdec0485a4e124e1577e413dec427e9bafaa1c Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 15 Mar 2012 10:05:49 +0000 Subject: Respond to secondary DA requests. --- usr.bin/tmux/input.c | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'usr.bin/tmux/input.c') diff --git a/usr.bin/tmux/input.c b/usr.bin/tmux/input.c index 6954dcd599a..bf0eb618855 100644 --- a/usr.bin/tmux/input.c +++ b/usr.bin/tmux/input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: input.c,v 1.49 2012/03/03 09:43:22 nicm Exp $ */ +/* $OpenBSD: input.c,v 1.50 2012/03/15 10:05:49 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -127,6 +127,7 @@ enum input_csi_type { INPUT_CSI_CUP, INPUT_CSI_CUU, INPUT_CSI_DA, + INPUT_CSI_DA_TWO, INPUT_CSI_DCH, INPUT_CSI_DECSCUSR, INPUT_CSI_DECSTBM, @@ -166,6 +167,7 @@ const struct input_table_entry input_csi_table[] = { { 'P', "", INPUT_CSI_DCH }, { 'Z', "", INPUT_CSI_CBT }, { 'c', "", INPUT_CSI_DA }, + { 'c', ">", INPUT_CSI_DA_TWO }, { 'd', "", INPUT_CSI_VPA }, { 'f', "", INPUT_CSI_CUP }, { 'g', "", INPUT_CSI_TBC }, @@ -1097,6 +1099,16 @@ input_csi_dispatch(struct input_ctx *ictx) break; } break; + case INPUT_CSI_DA_TWO: + switch (input_get(ictx, 0, 0, 0)) { + case 0: + input_reply(ictx, "\033[>0;95;0c"); + break; + default: + log_debug("%s: unknown '%c'", __func__, ictx->ch); + break; + } + break; case INPUT_CSI_DCH: screen_write_deletecharacter(sctx, input_get(ictx, 0, 1, 1)); break; -- cgit v1.2.3-59-g8ed1b