2020-06-02 03:57:01 +02:00
|
|
|
#![allow(unused)]
|
2020-09-10 06:55:18 +02:00
|
|
|
pub mod graphemes;
|
2020-09-17 07:57:49 +02:00
|
|
|
mod position;
|
2020-05-25 06:02:21 +02:00
|
|
|
mod selection;
|
2020-06-24 20:59:35 +02:00
|
|
|
pub mod state;
|
2020-09-12 12:36:49 +02:00
|
|
|
pub mod syntax;
|
2020-05-25 06:02:21 +02:00
|
|
|
mod transaction;
|
2020-05-20 11:14:51 +02:00
|
|
|
|
2020-06-05 07:02:10 +02:00
|
|
|
pub use ropey::{Rope, RopeSlice};
|
2020-05-28 07:45:44 +02:00
|
|
|
pub use tendril::StrTendril as Tendril;
|
|
|
|
|
2020-09-17 07:57:49 +02:00
|
|
|
pub use position::Position;
|
2020-09-19 16:16:00 +02:00
|
|
|
pub use selection::Range;
|
2020-05-25 06:02:21 +02:00
|
|
|
pub use selection::Selection;
|
2020-09-17 07:57:49 +02:00
|
|
|
pub use syntax::Syntax;
|
2020-05-25 06:02:21 +02:00
|
|
|
|
|
|
|
pub use state::State;
|
|
|
|
|
2020-05-28 07:59:50 +02:00
|
|
|
pub use transaction::{Assoc, Change, ChangeSet, Transaction};
|