mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-28 15:56:27 +00:00
Use bold bar as the default marker
This commit is contained in:
parent
c36b846acc
commit
da500a358f
@ -453,7 +453,7 @@ Input prompt (default: '> ')
|
|||||||
Pointer to the current line (default: '▌' or '>' depending on \fB--no-unicode\fR)
|
Pointer to the current line (default: '▌' or '>' depending on \fB--no-unicode\fR)
|
||||||
.TP
|
.TP
|
||||||
.BI "--marker=" "STR"
|
.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
|
.TP
|
||||||
.BI "--header=" "STR"
|
.BI "--header=" "STR"
|
||||||
The given string will be printed as the sticky header. The lines are displayed
|
The given string will be printed as the sticky header. The lines are displayed
|
||||||
|
@ -2637,7 +2637,7 @@ func postProcessOptions(opts *Options) error {
|
|||||||
|
|
||||||
if opts.Marker == nil {
|
if opts.Marker == nil {
|
||||||
// "▏" looks better, but not all terminals render it correctly
|
// "▏" looks better, but not all terminals render it correctly
|
||||||
defaultMarker := "│"
|
defaultMarker := "┃"
|
||||||
if !opts.Unicode {
|
if !opts.Unicode {
|
||||||
defaultMarker = ">"
|
defaultMarker = ">"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user