summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--man/man1/fzf.12
-rw-r--r--src/options.go3
2 files changed, 3 insertions, 2 deletions
diff --git a/man/man1/fzf.1 b/man/man1/fzf.1
index 8f9c8611..ea66597d 100644
--- a/man/man1/fzf.1
+++ b/man/man1/fzf.1
@@ -450,7 +450,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 ac7e76f0..3a6de009 100644
--- a/src/options.go
+++ b/src/options.go
@@ -2616,7 +2616,8 @@ func postProcessOptions(opts *Options) error {
}
if opts.Marker == nil {
- defaultMarker := "▏"
+ // "▏" looks better, but not all terminals render it correctly
+ defaultMarker := "│"
if !opts.Unicode {
defaultMarker = ">"
}