freya-edit 0.4.0-rc.23

Text Editing APIs for Freya
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod config;
mod editor_history;
mod event;
mod rope_editor;
mod text_editor;
mod use_editable;

pub use config::*;
pub use editor_history::*;
pub use event::*;
pub use freya_clipboard::prelude::*;
pub use rope_editor::*;
pub use ropey::{
    Rope,
    RopeSlice,
};
pub use text_editor::*;
pub use use_editable::*;