diff options
Diffstat (limited to 'helix-core/src/lib.rs')
-rw-r--r-- | helix-core/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs index 8c58d734..c617fdbf 100644 --- a/helix-core/src/lib.rs +++ b/helix-core/src/lib.rs @@ -1,5 +1,4 @@ #![allow(unused)] -pub mod commands; pub mod graphemes; mod position; mod selection; @@ -11,7 +10,7 @@ pub use ropey::{Rope, RopeSlice}; pub use tendril::StrTendril as Tendril; pub use position::Position; -pub use selection::Range as SelectionRange; +pub use selection::Range; pub use selection::Selection; pub use syntax::Syntax; |