[go: up one dir, main page]

liner 0.1.3

A library offering readline-like functionality.
Documentation
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 util;

#[cfg(test)]
mod test;