gutterOnly method
Returns just the gutter character without trailing space. Returns empty string when borders are disabled.
Implementation
String gutterOnly() {
return features.showBorders
? '${theme.gray}${glyphs.borderVertical}${theme.reset}'
: '';
}