Re: [PATCH] Add support for ANSI.SYS SCP/RCP escape codes

2015-09-12 Thread Samuel Thibault
James Clarke, le Sat 12 Sep 2015 00:42:05 +0100, a écrit : > This adds support for CSI s and u, which are equivalent to ESC 7 and 8, > saving/restoring the cursor position. Applied, thanks! Samuel

Re: [PATCH] Add support for ANSI.SYS SCP/RCP escape codes

2015-09-12 Thread Samuel Thibault
James Clarke, le Sat 12 Sep 2015 10:50:37 +0100, a écrit : > Currently the new "apt" command-line tool relies on them (when it installs > packages, it keeps a progress bar at the bottom, but shows a log above), > although they've recently patched it to use the more widely-available ESC 7/8 > (th

Re: [PATCH] Add support for ANSI.SYS SCP/RCP escape codes

2015-09-12 Thread James Clarke
Currently the new "apt" command-line tool relies on them (when it installs packages, it keeps a progress bar at the bottom, but shows a log above), although they've recently patched it to use the more widely-available ESC 7/8 (though the patch is not yet in sid). I chose SCP/RCP, because ANSI.SY

Re: [PATCH] Add support for ANSI.SYS SCP/RCP escape codes

2015-09-12 Thread Samuel Thibault
Hello, James Clarke, le Sat 12 Sep 2015 00:42:05 +0100, a écrit : > This adds support for CSI s and u, which are equivalent to ESC 7 and 8, > saving/restoring the cursor position. Just curious: in which case did you see it a problem, or is it just for completeness? (which can always become conven

[PATCH] Add support for ANSI.SYS SCP/RCP escape codes

2015-09-11 Thread James Clarke
This adds support for CSI s and u, which are equivalent to ESC 7 and 8, saving/restoring the cursor position. * console/display.c (handle_esc_bracket): Added support for CSI s and u. --- console/display.c | 12 1 file changed, 12 insertions(+) diff --git a/console/display.c b/consol