gutterOnly method

String gutterOnly()

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}'
      : '';
}