Readline implementation in Rust that is based on Antirez' Linenoise Supported Platforms Unix (tested on FreeBSD, Linux and macOS) Windows cmd.exe Powershell Note: Powershell ISE is not supported, check issue #56 Mintty (Cygwin/MinGW) is not supported Highlighting / Colors are not supported on Windows < Windows 10 except with ConEmu and ColorMode::Forced. use rustyline::error::ReadlineError; use ru

