mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-23 18:06:18 +04:00
10548bf0e3
Need to be used for autoinfo
Revert "Revert "Refactor key into helix-view""
This reverts commit 10f9f72232
.
23 lines
389 B
Rust
23 lines
389 B
Rust
#[macro_use]
|
|
pub mod macros;
|
|
|
|
pub mod clipboard;
|
|
pub mod document;
|
|
pub mod editor;
|
|
pub mod input;
|
|
pub mod register_selection;
|
|
pub mod theme;
|
|
pub mod tree;
|
|
pub mod view;
|
|
|
|
slotmap::new_key_type! {
|
|
pub struct DocumentId;
|
|
pub struct ViewId;
|
|
}
|
|
|
|
pub use document::Document;
|
|
pub use editor::Editor;
|
|
pub use register_selection::RegisterSelection;
|
|
pub use theme::Theme;
|
|
pub use view::View;
|