Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-core/src/lib.rs')
| -rw-r--r-- | helix-core/src/lib.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs index 3fcddfcd..09865ca4 100644 --- a/helix-core/src/lib.rs +++ b/helix-core/src/lib.rs @@ -53,7 +53,7 @@ pub use smartstring::SmartString; pub type Tendril = SmartString<smartstring::LazyCompact>; #[doc(inline)] -pub use {regex, tree_sitter}; +pub use {regex, tree_house::tree_sitter}; pub use position::{ char_idx_at_visual_offset, coords_at_pos, pos_at_coords, softwrapped_dimensions, @@ -73,3 +73,5 @@ pub use line_ending::{LineEnding, NATIVE_LINE_ENDING}; pub use transaction::{Assoc, Change, ChangeSet, Deletion, Operation, Transaction}; pub use uri::Uri; + +pub use tree_house::Language; |