diff --git a/man/man1/fzf.1 b/man/man1/fzf.1 index 5611dbbb..13fcc18b 100644 --- a/man/man1/fzf.1 +++ b/man/man1/fzf.1 @@ -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 diff --git a/src/options.go b/src/options.go index cfe7d661..2d0112d8 100644 --- a/src/options.go +++ b/src/options.go @@ -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 = ">" }