csi: implement cursor horizontal absolute

This commit is contained in:
Daniel Eklöf 2019-06-24 20:08:44 +02:00
parent 637820bef5
commit da0a65d499
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

13
csi.c
View file

@ -295,6 +295,19 @@ csi_dispatch(struct terminal *term, uint8_t final)
break;
}
case 'G': {
/* Cursor horizontal absolute */
int col = term->vt.params.idx > 0 ? term->vt.params.v[0].value : 1;
if (col == 0)
col = 1;
if (col > term->grid.cols)
col = term->grid.cols;
grid_cursor_to(&term->grid, term->grid.cursor.row, col);
break;
}
case 'H': {
/* Move cursor */
int row = term->vt.params.idx > 0 ? term->vt.params.v[0].value : 1;