1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! View and UI layer //! //! This module contains all presentation and rendering components. pub mod file_tree; pub mod margin; pub mod overlay; pub mod popup; pub mod prompt; pub mod split; pub mod stream; pub mod theme; pub mod ui; pub mod viewport; pub mod virtual_text;