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.rs8
1 files changed, 3 insertions, 5 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs
index 09865ca4..2bf75f69 100644
--- a/helix-core/src/lib.rs
+++ b/helix-core/src/lib.rs
@@ -3,14 +3,12 @@ pub use encoding_rs as encoding;
pub mod auto_pairs;
pub mod case_conversion;
pub mod chars;
-pub mod command_line;
pub mod comment;
pub mod completion;
pub mod config;
pub mod diagnostic;
pub mod diff;
pub mod doc_formatter;
-pub mod editor_config;
pub mod fuzzy;
pub mod graphemes;
pub mod history;
@@ -24,6 +22,7 @@ pub mod object;
mod position;
pub mod search;
pub mod selection;
+pub mod shellwords;
pub mod snippets;
pub mod surround;
pub mod syntax;
@@ -53,8 +52,9 @@ pub use smartstring::SmartString;
pub type Tendril = SmartString<smartstring::LazyCompact>;
#[doc(inline)]
-pub use {regex, tree_house::tree_sitter};
+pub use {regex, tree_sitter};
+pub use graphemes::RopeGraphemes;
pub use position::{
char_idx_at_visual_offset, coords_at_pos, pos_at_coords, softwrapped_dimensions,
visual_offset_from_anchor, visual_offset_from_block, Position, VisualOffsetError,
@@ -73,5 +73,3 @@ 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;