forked from Mirrors/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
383 B
Rust
20 lines
383 B
Rust
#[macro_use]
|
|
pub mod macros;
|
|
|
|
pub mod document;
|
|
pub mod editor;
|
|
pub mod register_selection;
|
|
pub mod theme;
|
|
pub mod tree;
|
|
pub mod view;
|
|
|
|
use slotmap::new_key_type;
|
|
new_key_type! { pub struct DocumentId; }
|
|
new_key_type! { pub struct ViewId; }
|
|
|
|
pub use document::Document;
|
|
pub use editor::Editor;
|
|
pub use register_selection::RegisterSelection;
|
|
pub use theme::Theme;
|
|
pub use view::View;
|