diff options
Diffstat (limited to 'helix-core/src/lib.rs')
-rw-r--r-- | helix-core/src/lib.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs index 9705deaa..0f58fbbc 100644 --- a/helix-core/src/lib.rs +++ b/helix-core/src/lib.rs @@ -2,7 +2,7 @@ pub mod graphemes; pub mod macros; mod position; -mod selection; +pub mod selection; pub mod state; pub mod syntax; mod transaction; @@ -11,6 +11,9 @@ 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; |