aboutsummaryrefslogtreecommitdiff
path: root/input.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2019-08-06 07:02:33 +0100
committerThomas Adam <thomas@xteddy.org>2019-08-06 07:02:33 +0100
commit9b3fefc43529666b1f6adc5efc89f6a5f127f274 (patch)
tree4ecbf1bbb63a701276b26d3762384ee717f76565 /input.c
parenteb8eeab05e5ef158674f7d4ace78ba4caa0bb27e (diff)
parent45f4ff54850ff9b448070a96b33e63451f973e33 (diff)
downloadrtmux-9b3fefc43529666b1f6adc5efc89f6a5f127f274.tar.gz
rtmux-9b3fefc43529666b1f6adc5efc89f6a5f127f274.tar.bz2
rtmux-9b3fefc43529666b1f6adc5efc89f6a5f127f274.zip
Merge branch 'obsd-master'
Diffstat (limited to 'input.c')
-rw-r--r--input.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/input.c b/input.c
index ff8d7a17..f37f8fd8 100644
--- a/input.c
+++ b/input.c
@@ -244,6 +244,7 @@ enum input_csi_type {
INPUT_CSI_RM,
INPUT_CSI_RM_PRIVATE,
INPUT_CSI_SCP,
+ INPUT_CSI_SD,
INPUT_CSI_SGR,
INPUT_CSI_SM,
INPUT_CSI_SM_PRIVATE,
@@ -270,6 +271,7 @@ static const struct input_table_entry input_csi_table[] = {
{ 'M', "", INPUT_CSI_DL },
{ 'P', "", INPUT_CSI_DCH },
{ 'S', "", INPUT_CSI_SU },
+ { 'T', "", INPUT_CSI_SD },
{ 'X', "", INPUT_CSI_ECH },
{ 'Z', "", INPUT_CSI_CBT },
{ '`', "", INPUT_CSI_HPA },
@@ -1525,6 +1527,11 @@ input_csi_dispatch(struct input_ctx *ictx)
if (n != -1)
screen_write_scrollup(sctx, n, bg);
break;
+ case INPUT_CSI_SD:
+ n = input_get(ictx, 0, 1, 1);
+ if (n != -1)
+ screen_write_scrolldown(sctx, n, bg);
+ break;
case INPUT_CSI_TBC:
switch (input_get(ictx, 0, 0, 0)) {
case -1: