m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-15 14:53:47 -05:00

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
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 = ">"
}