diff options
Diffstat (limited to 'helix-view/src/lib.rs')
-rw-r--r-- | helix-view/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/helix-view/src/lib.rs b/helix-view/src/lib.rs index 05de7e9f..d98d2c5a 100644 --- a/helix-view/src/lib.rs +++ b/helix-view/src/lib.rs @@ -4,6 +4,9 @@ pub mod theme; pub mod tree; pub mod view; +use slotmap::new_key_type; +new_key_type! { pub struct DocumentId; } + pub use document::Document; pub use editor::Editor; pub use theme::Theme; |