
* reverse the dependency between helix-tui and helix-view by moving a fiew types to view * fix tests * clippy and format fixes Co-authored-by: Keith Simmons <keithsim@microsoft.com>
24 lines
425 B
Rust
24 lines
425 B
Rust
#[macro_use]
|
|
pub mod macros;
|
|
|
|
pub mod clipboard;
|
|
pub mod document;
|
|
pub mod editor;
|
|
pub mod graphics;
|
|
pub mod input;
|
|
pub mod keyboard;
|
|
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;
|