billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=7fd86d89689e9561741e5fa4634a05159692620b
commit 7fd86d89689e9561741e5fa4634a05159692620b Author: Boris Faure <[email protected]> Date: Mon Aug 17 23:18:04 2015 +0200 warn about window operations' escape codes being not supported --- src/bin/termptyesc.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/bin/termptyesc.c b/src/bin/termptyesc.c index 55856cf..bd525c3 100644 --- a/src/bin/termptyesc.c +++ b/src/bin/termptyesc.c @@ -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; --
