warn about window operations' escape codes being not supported

This commit is contained in:
Boris Faure 2015-08-17 23:18:04 +02:00
parent b80bedc7c2
commit 7fd86d8968
1 changed files with 4 additions and 0 deletions

View File

@ -1026,6 +1026,10 @@ _handle_esc_csi(Termpty *ty, const Eina_Unicode *c, Eina_Unicode *ce)
case 's': // store cursor pos
termpty_cursor_copy(ty, EINA_TRUE);
break;
case 't': // store cursor pos
arg = _csi_arg_get(&b);
WRN("TODO: window operation %d not supported", arg);
break;
case 'u': // restore cursor pos
termpty_cursor_copy(ty, EINA_FALSE);
break;