freya_edit/lib.rs
1mod config;
2mod editor_history;
3mod event;
4mod mode;
5mod rope_editor;
6mod text_editor;
7mod use_editable;
8
9pub use config::*;
10pub use editor_history::*;
11pub use event::*;
12pub use freya_clipboard::prelude::*;
13pub use mode::*;
14pub use rope_editor::*;
15pub use ropey::{
16 Rope,
17 RopeSlice,
18};
19pub use text_editor::*;
20pub use use_editable::*;