summaryrefslogtreecommitdiffstats
path: root/input.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2012-03-15 10:05:49 +0000
committerNicholas Marriott <nicm@openbsd.org>2012-03-15 10:05:49 +0000
commit523ed3873dfa15cf625ce3d013efd8770974f59d (patch)
tree3c34ff0c6b977e368f0d99d3b746ce88b847fd17 /input.c
parent005566f915030d269fdf7a42e619f8469099b0f0 (diff)
Respond to secondary DA requests.
Diffstat (limited to 'input.c')
-rw-r--r--input.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/input.c b/input.c
index c12e1b29..88e633fe 100644
--- a/input.c
+++ b/input.c
@@ -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;