Use bold bar as the default marker

This commit is contained in:
Junegunn Choi 2024-05-24 00:31:20 +09:00
parent c36b846acc
commit da500a358f
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627
2 changed files with 2 additions and 2 deletions

View File

@ -453,7 +453,7 @@ Input prompt (default: '> ')
Pointer to the current line (default: '▌' or '>' depending on \fB--no-unicode\fR)
.TP
.BI "--marker=" "STR"
Multi-select marker (default: '' or '>' depending on \fB--no-unicode\fR)
Multi-select marker (default: '' or '>' depending on \fB--no-unicode\fR)
.TP
.BI "--header=" "STR"
The given string will be printed as the sticky header. The lines are displayed

View File

@ -2637,7 +2637,7 @@ func postProcessOptions(opts *Options) error {
if opts.Marker == nil {
// "▏" looks better, but not all terminals render it correctly
defaultMarker := ""
defaultMarker := ""
if !opts.Unicode {
defaultMarker = ">"
}