blerust 0.1.16

Blazing fast and robust line editor in Rust (replacement for blesh)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod buffer;
pub mod completion;
pub mod editor;
pub mod highlight;
pub mod history;
pub mod keymap;

pub use buffer::LineBuffer;
pub use completion::Completer;
pub use editor::{EditorConfig, LineEditor, ReadlineResult};
pub use highlight::{StyledSpan, SyntaxHighlighter, TokenType};
pub use history::History;
pub use keymap::{Action, EditMode, Keymap};