We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1eb0e17 + 8d606dc commit 09c9b69Copy full SHA for 09c9b69
src/backend/cell/mod.rs
@@ -1,4 +1,9 @@
1
//! Enhanced cell type that captures more information than ratatui's Cell.
2
+//!
3
+//! Uses [`CompactString`] for cell symbols to avoid heap allocation for typical
4
+//! single-character cells. At 80×24, a terminal has 1,920 cells per frame;
5
+//! `CompactString` stores up to 24 bytes inline, eliminating thousands of
6
+//! small allocations per render cycle.
7
8
use compact_str::CompactString;
9
use ratatui::style::{Color, Modifier, Style};
0 commit comments