Implement CSI e and f.
This commit is contained in:
parent
af700542b0
commit
dd936b4873
@ -350,6 +350,7 @@ int guac_terminal_csi(guac_terminal* term, char c) {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
/* B: Move down */
|
/* B: Move down */
|
||||||
|
case 'e':
|
||||||
case 'B':
|
case 'B':
|
||||||
|
|
||||||
/* Get move amount */
|
/* Get move amount */
|
||||||
@ -432,6 +433,7 @@ int guac_terminal_csi(guac_terminal* term, char c) {
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
/* H: Move cursor */
|
/* H: Move cursor */
|
||||||
|
case 'f':
|
||||||
case 'H':
|
case 'H':
|
||||||
|
|
||||||
row = argv[0]; if (row != 0) row--;
|
row = argv[0]; if (row != 0) row--;
|
||||||
|
Loading…
Reference in New Issue
Block a user