Implement CSI e and f.

This commit is contained in:
Michael Jumper 2013-05-21 23:27:34 -07:00
parent af700542b0
commit dd936b4873

View File

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