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