helix-mirror/helix-view/src/lib.rs

15 lines
278 B
Rust
Raw Normal View History

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; }
2021-03-24 09:03:20 +04:00
new_key_type! { pub struct ViewId; }
pub use document::Document;
pub use editor::Editor;
pub use theme::Theme;
pub use view::View;