aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/lib.rs
blob: 8458c36f72ac632500acb2eefc13be9d8bce3285 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#![allow(unused)]
mod diagnostic;
pub mod graphemes;
mod history;
pub mod indent;
pub mod macros;
mod position;
pub mod register;
pub mod selection;
pub mod state;
pub mod syntax;
mod transaction;

pub use ropey::{Rope, RopeSlice};

pub use tendril::StrTendril as Tendril;

#[doc(inline)]
pub use {regex, tree_sitter};

pub use position::Position;
pub use selection::Range;
pub use selection::Selection;
pub use syntax::Syntax;

pub use diagnostic::Diagnostic;
pub use history::History;
pub use state::State;

pub use transaction::{Assoc, Change, ChangeSet, Transaction};