helix-mods/helix-view/src/lib.rs
Blaž Hrastnik 448c1abba0 View tree implementation: render multiple split views.
Cursors are still a bit buggy and we should render in focus statusbar
differently than in the other pane.
2021-02-03 19:36:54 +09:00

10 lines
172 B
Rust

pub mod document;
pub mod editor;
pub mod theme;
pub mod tree;
pub mod view;
pub use document::Document;
pub use editor::Editor;
pub use theme::Theme;
pub use view::View;