summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/options.go3
1 files changed, 2 insertions, 1 deletions
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 = ">"
}