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;
/* B: Move down */
case 'e':
case 'B':
/* Get move amount */
@ -432,6 +433,7 @@ int guac_terminal_csi(guac_terminal* term, char c) {
break;
/* H: Move cursor */
case 'f':
case 'H':
row = argv[0]; if (row != 0) row--;