You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helix-plus/helix-core/src/lib.rs

31 lines
583 B
Rust

#![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;
4 years ago
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, Operation, Transaction};