ultron_core/
lib.rs

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