2020-06-02 09:57:01 +08:00
|
|
|
#![allow(unused)]
|
2020-09-10 12:55:18 +08:00
|
|
|
pub mod graphemes;
|
2020-10-04 16:15:43 +08:00
|
|
|
mod history;
|
2020-10-14 11:01:41 +08:00
|
|
|
pub mod indent;
|
2020-09-21 17:24:16 +08:00
|
|
|
pub mod macros;
|
2020-09-17 13:57:49 +08:00
|
|
|
mod position;
|
2020-10-06 15:00:23 +08:00
|
|
|
pub mod register;
|
2020-09-29 00:01:27 +08:00
|
|
|
pub mod selection;
|
2020-06-25 02:59:35 +08:00
|
|
|
pub mod state;
|
2020-09-12 18:36:49 +08:00
|
|
|
pub mod syntax;
|
2020-05-25 12:02:21 +08:00
|
|
|
mod transaction;
|
2020-05-20 17:14:51 +08:00
|
|
|
|
2020-06-05 13:02:10 +08:00
|
|
|
pub use ropey::{Rope, RopeSlice};
|
2020-09-29 00:00:35 +08:00
|
|
|
|
2020-05-28 13:45:44 +08:00
|
|
|
pub use tendril::StrTendril as Tendril;
|
|
|
|
|
2020-09-29 00:01:27 +08:00
|
|
|
#[doc(inline)]
|
|
|
|
pub use {regex, tree_sitter};
|
|
|
|
|
2020-09-17 13:57:49 +08:00
|
|
|
pub use position::Position;
|
2020-09-19 22:16:00 +08:00
|
|
|
pub use selection::Range;
|
2020-05-25 12:02:21 +08:00
|
|
|
pub use selection::Selection;
|
2020-09-17 13:57:49 +08:00
|
|
|
pub use syntax::Syntax;
|
2020-05-25 12:02:21 +08:00
|
|
|
|
2020-10-04 16:15:43 +08:00
|
|
|
pub use history::History;
|
2020-05-25 12:02:21 +08:00
|
|
|
pub use state::State;
|
|
|
|
|
2020-05-28 13:59:50 +08:00
|
|
|
pub use transaction::{Assoc, Change, ChangeSet, Transaction};
|