From 53f4273b17e5bdc474583e37e9843a9dfa6f9c61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sun, 17 Nov 2019 11:31:35 +0100 Subject: [PATCH] csi: implement 'HPR' - Horizontal Position Relative --- csi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/csi.c b/csi.c index 74e68513..e7643197 100644 --- a/csi.c +++ b/csi.c @@ -349,6 +349,7 @@ csi_dispatch(struct terminal *term, uint8_t final) term_cursor_down(term, vt_param_get(term, 0, 1)); break; + case 'a': case 'C': term_cursor_right(term, vt_param_get(term, 0, 1)); break;