From bf58b9ea8e922171792f683863f33b2fd296c3e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 5 Nov 2019 11:10:19 +0100 Subject: [PATCH] csi: implement force cursor position --- csi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/csi.c b/csi.c index 3ee46b70..7c4a0f9d 100644 --- a/csi.c +++ b/csi.c @@ -363,6 +363,7 @@ csi_dispatch(struct terminal *term, uint8_t final) break; } + case 'f': case 'H': { /* Move cursor */ int row = min(vt_param_get(term, 0, 1), term->rows);