From 0eb2ae9f8bd57fed6242d76d2273df4a1be31cc8 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Wed, 8 Apr 2026 23:28:10 +0900 Subject: [PATCH] Fix gutter display in --style=minimal --- src/options.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/options.go b/src/options.go index 2cf6d2a4..4a012a04 100644 --- a/src/options.go +++ b/src/options.go @@ -3516,7 +3516,9 @@ func applyPreset(opts *Options, preset string) error { opts.Preview.border = tui.BorderLine opts.Preview.info = false opts.InfoStyle = infoDefault - opts.Theme.Gutter = tui.ColorAttr{Color: -1, Attr: 0} + opts.Theme.Gutter = tui.NewColorAttr() + space := " " + opts.Gutter = &space empty := "" opts.Separator = &empty opts.Scrollbar = &empty