summaryrefslogtreecommitdiff
path: root/helix-core/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-core/src/lib.rs')
-rw-r--r--helix-core/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs
index 0f58fbbc..9bc5d003 100644
--- a/helix-core/src/lib.rs
+++ b/helix-core/src/lib.rs
@@ -1,5 +1,6 @@
#![allow(unused)]
pub mod graphemes;
+mod history;
pub mod macros;
mod position;
pub mod selection;
@@ -19,6 +20,7 @@ pub use selection::Range;
pub use selection::Selection;
pub use syntax::Syntax;
+pub use history::History;
pub use state::State;
pub use transaction::{Assoc, Change, ChangeSet, Transaction};