m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-15 06:43:47 -05:00

Change default marker

This commit is contained in:
Junegunn Choi
2024-05-20 18:43:26 +09:00
parent 573df524fe
commit 7b0c9e04d3
2 changed files with 3 additions and 2 deletions

View File

@@ -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 = ">"
}