csi: implement 'civis' (show/hide cursor)

This commit is contained in:
Daniel Eklöf 2019-07-03 14:14:46 +02:00
parent a7a28ff581
commit 5e8c75aa38
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 5 additions and 3 deletions

4
csi.c
View file

@ -567,7 +567,7 @@ csi_dispatch(struct terminal *term, uint8_t final)
break;
case 25:
LOG_WARN("unimplemented: civis");
term->hide_cursor = false;
break;
case 1000:
@ -625,7 +625,7 @@ csi_dispatch(struct terminal *term, uint8_t final)
break;
case 25:
LOG_WARN("unimplemented: civis");
term->hide_cursor = true;
break;
case 1000: