summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2024-05-24 00:31:20 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2024-05-24 00:31:20 +0900
commitda500a358f58a42bf62d3446eb163d747f6492a1 (patch)
treec68003fea6e94ff0d972b191486176c3cebae70d /src
parentc36b846accc36c5a833a8e22d06107b778a4f219 (diff)
downloadfzf-da500a358f58a42bf62d3446eb163d747f6492a1.tar.gz
Use bold bar as the default marker
Diffstat (limited to 'src')
-rw-r--r--src/options.go2
1 files changed, 1 insertions, 1 deletions
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 = ">"
}