|
|
@ -18,6 +18,12 @@ mod state;
|
|
|
|
pub mod syntax;
|
|
|
|
pub mod syntax;
|
|
|
|
mod transaction;
|
|
|
|
mod transaction;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pub mod unicode {
|
|
|
|
|
|
|
|
pub use unicode_general_category as category;
|
|
|
|
|
|
|
|
pub use unicode_segmentation as segmentation;
|
|
|
|
|
|
|
|
pub use unicode_width as width;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static RUNTIME_DIR: once_cell::sync::Lazy<std::path::PathBuf> =
|
|
|
|
static RUNTIME_DIR: once_cell::sync::Lazy<std::path::PathBuf> =
|
|
|
|
once_cell::sync::Lazy::new(runtime_dir);
|
|
|
|
once_cell::sync::Lazy::new(runtime_dir);
|
|
|
|
|
|
|
|
|
|
|
@ -97,8 +103,6 @@ pub use ropey::{Rope, RopeSlice};
|
|
|
|
|
|
|
|
|
|
|
|
pub use tendril::StrTendril as Tendril;
|
|
|
|
pub use tendril::StrTendril as Tendril;
|
|
|
|
|
|
|
|
|
|
|
|
pub use unicode_general_category::get_general_category;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#[doc(inline)]
|
|
|
|
#[doc(inline)]
|
|
|
|
pub use {regex, tree_sitter};
|
|
|
|
pub use {regex, tree_sitter};
|
|
|
|
|
|
|
|
|
|
|
|