aboutsummaryrefslogtreecommitdiff
path: root/helix-view/src/lib.rs
blob: d98d2c5aefbe82d325285a29047e622d02e749ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod document;
pub mod editor;
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;
pub use view::View;