fresh-editor 0.1.74

A lightweight, fast terminal-based text editor with LSP support and TypeScript plugins
Documentation
//! UI rendering modules
//!
//! This module contains all rendering logic for the editor UI,
//! separated into focused submodules:
//! - `menu` - Menu bar rendering
//! - `tabs` - Tab bar rendering for multiple buffers
//! - `status_bar` - Status bar and prompt/minibuffer display
//! - `suggestions` - Autocomplete and command palette UI
//! - `split_rendering` - Split pane layout and rendering
//! - `file_explorer` - File tree explorer rendering
//! - `scrollbar` - Reusable scrollbar widget
//! - `scroll_panel` - Reusable scrollable panel for variable-height items
//! - `file_browser` - File open dialog popup

pub mod file_browser;
pub mod file_explorer;
pub mod menu;
pub mod menu_input;
pub mod scroll_panel;
pub mod scrollbar;
pub mod split_rendering;
pub mod status_bar;
pub mod suggestions;
pub mod tabs;
pub mod text_edit;
pub mod view_pipeline;

// Re-export main types for convenience
pub use file_browser::{FileBrowserLayout, FileBrowserRenderer};
pub use file_explorer::FileExplorerRenderer;
pub use menu::{context_keys, MenuContext, MenuRenderer, MenuState};
pub use menu_input::MenuInputHandler;
pub use scroll_panel::{
    FocusRegion, RenderInfo, ScrollItem, ScrollState, ScrollablePanel, ScrollablePanelLayout,
};
pub use scrollbar::{render_scrollbar, ScrollbarColors, ScrollbarState};
pub use split_rendering::SplitRenderer;
pub use status_bar::{truncate_path, StatusBarLayout, StatusBarRenderer, TruncatedPath};
pub use suggestions::SuggestionsRenderer;
pub use tabs::TabsRenderer;
pub use text_edit::TextEdit;