csi: implement 'HPR' - Horizontal Position Relative

This commit is contained in:
Daniel Eklöf 2019-11-17 11:31:35 +01:00
parent 616e506f2e
commit 53f4273b17
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

1
csi.c
View file

@ -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;