1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![deny(warnings)]
pub use editor::{Command, Editor};
pub use nalgebra::Point2;
pub use options::Options;
pub use text_buffer::{Ch, TextBuffer, BLANK_CH};
pub use text_edit::{Selection, SelectionMode, TextEdit};
pub use ultron_syntaxes_themes::{Color, Style, TextHighlighter};

pub use nalgebra;
pub use unicode_width;

pub mod editor;
mod options;
mod text_buffer;
mod text_edit;
pub mod util;