flutter/examples/terminal
Viet-Trung Luu 0beafd3555 Terminal: Add support for (and "fix") backspace.
Also:
* Fix consecutive spaces (don't collapse them).
* Add support for ^L.

Still doesn't work:
* Totally blank lines. (I know why, but I don't know why I can't seem to
  fix it.)

R=erg@chromium.org

Review URL: https://codereview.chromium.org/997873004
2015-03-11 16:54:17 -07:00
..
index.sky Add a simple prototype "terminal" example. 2015-03-11 14:34:25 -07:00
README.md Add a simple prototype "terminal" example. 2015-03-11 14:34:25 -07:00
terminal_display.dart Add a simple prototype "terminal" example. 2015-03-11 14:34:25 -07:00
terminal_file_impl.dart Terminal: Add support for (and "fix") backspace. 2015-03-11 16:54:17 -07:00
terminal.sky Terminal: Add support for (and "fix") backspace. 2015-03-11 16:54:17 -07:00

Terminal

This is a prototype "terminal" application that can connect to any Mojo application (providing the |terminal.TerminalClient| interface) and provide interactive terminal facilities via an implementation of |mojo.files.File|. I.e., once connected, the application can write to/read from the terminal by performing the corresponding operations on a "file" (thus replicating decades-old technology, poorly).