redox_liner 0.5.3

A library offering readline-like functionality.
Documentation
extern crate bytecount;
extern crate itertools;
extern crate termion;
extern crate unicode_width;

mod event;
pub use event::*;

mod editor;
pub use editor::*;

mod complete;
pub use complete::*;

mod context;
pub use context::*;

mod buffer;
pub use buffer::*;

mod history;
pub use history::*;

mod keymap;
pub use keymap::*;

mod util;

#[cfg(test)]
mod test;