Package-level declarations
Types
Link copied to clipboard
data class Cell(var char: Char = ' ', var style: CharacterStyle = CharacterStyle.DEFAULT, var isPlaceholder: Boolean = false)
Represents a single character block on the terminal grid.
Link copied to clipboard
Link copied to clipboard
A highly efficient, fixed-capacity circular buffer. Used to store the terminal scrollback history without requiring O(N) array shifting when the history exceeds its maximum capacity.