aboutsummaryrefslogtreecommitdiff
path: root/helix-core/src/lib.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2020-09-28 16:01:27 +0000
committerBlaž Hrastnik2020-09-28 16:01:27 +0000
commit36e7e2133fe1d472600cfd935b8046b8d50146c2 (patch)
tree887eb91b778bce0ec4a07d3a3c41cb53376579fb /helix-core/src/lib.rs
parent3020077da8efbf914a9cb0a2cbb50362d339a39a (diff)
Split selection on regex, fix InputEdit generation.
Diffstat (limited to 'helix-core/src/lib.rs')
-rw-r--r--helix-core/src/lib.rs5
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;