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 8f4239b1..a9792562 100644 --- a/helix-core/src/lib.rs +++ b/helix-core/src/lib.rs @@ -3,7 +3,7 @@ pub mod auto_pairs; pub mod comment; pub mod diagnostic; pub mod graphemes; -mod history; +pub mod history; pub mod indent; pub mod macros; pub mod match_brackets; @@ -89,7 +89,6 @@ pub use smallvec::SmallVec; pub use syntax::Syntax; pub use diagnostic::Diagnostic; -pub use history::History; pub use state::State; pub use transaction::{Assoc, Change, ChangeSet, Operation, Transaction}; |