mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
c923774c41
The Ansi parser and their associated actions have been decoupled. Now parsing results in call backs to an interface which performs the appropriate actions depending on the environment. This improvement provides a functional Vi experience and the vttest no longer panics. This PR replaces docker/docker #13224 with the latest console updates. Signed-off-by: John Howard <jhoward@microsoft.com>
5 lines
308 B
Go
5 lines
308 B
Go
// These files implement ANSI-aware input and output streams for use by the Docker Windows client.
|
|
// When asked for the set of standard streams (e.g., stdin, stdout, stderr), the code will create
|
|
// and return pseudo-streams that convert ANSI sequences to / from Windows Console API calls.
|
|
|
|
package windows
|