- Updated markdown rendering logic to use more concise methods for obtaining vector lengths. - Changed review status display to use the correct flag from settings. - Cleaned up sidebar rendering code for better formatting and readability. - Enhanced status bar rendering with improved string formatting and consistent style application. - Refined workflow panel rendering, ensuring consistent style usage and improved readability. - Added architecture overview and detailed documentation for backend, data, dependencies, and frontend structures.
5 lines
159 B
Rust
5 lines
159 B
Rust
//! Background bash: run shell commands off the main thread, poll their
|
|
//! output non-blockingly, and terminate them on demand.
|
|
pub mod control;
|
|
pub mod job;
|