gutterOnly method
Returns a gutter-only line (no trailing space, just the border).
Useful for empty separator lines within a frame. Returns empty string when borders are disabled.
Implementation
String gutterOnly() => features.showBorders
? '${theme.gray}${glyphs.borderVertical}${theme.reset}'
: '';