billiob pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=36e5ca216548be9b80082749daafc8507f4e8349
commit 36e5ca216548be9b80082749daafc8507f4e8349 Author: Boris Faure <[email protected]> Date: Sat Jan 10 18:48:48 2015 +0100 "handle" HTS --- src/bin/termptyesc.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/bin/termptyesc.c b/src/bin/termptyesc.c index 0a755d9..4cabcb5 100644 --- a/src/bin/termptyesc.c +++ b/src/bin/termptyesc.c @@ -1583,11 +1583,12 @@ _handle_esc(Termpty *ty, const Eina_Unicode *c, Eina_Unicode *ce) case '8': // restore cursor pos _termpty_cursor_copy(&(ty->save), &(ty->state)); return 1; + case 'H': // set tab at current column + DBG("Character Tabulation Set (HTS)"); + return 1; /* case 'G': // query gfx mode return 2; - case 'H': // set tab at current column - return 1; case 'n': // single shift 2 return 1; case 'o': // single shift 3 --
