From 08027e7a79d49c7b1186a6e76415611d5b65b4e4 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Tue, 22 Jul 2025 19:16:55 +0900 Subject: Fix --no-header-lines-border behavior It should be different from --header-lines-border=none according to the man page. It should merge two headers unlike the latter. --- src/options.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/options.go b/src/options.go index 5cb9f14a..6cc13c46 100644 --- a/src/options.go +++ b/src/options.go @@ -2924,7 +2924,7 @@ func parseOptions(index *int, opts *Options, allArgs []string) error { return err } case "--no-header-lines-border": - opts.HeaderLinesShape = tui.BorderNone + opts.HeaderLinesShape = tui.BorderUndefined case "--header-lines-border": hasArg, arg := optionalNextString() if opts.HeaderLinesShape, err = parseBorder(arg, !hasArg); err != nil { -- cgit v1.2.3