summaryrefslogtreecommitdiffstats
path: root/src/terminal.go
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2023-01-01 17:38:34 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2023-01-01 19:01:56 +0900
commit435d8fa0a285ec565c5f7161f3c808ebdd277232 (patch)
treea355a4a2a1e37449bee486569640d3aa2a30223a /src/terminal.go
parent5cd6f1d06427f1e023573be084e384227fae3cdf (diff)
Colors for 'separator' and 'scrollbar' will default to that for 'border'
Diffstat (limited to 'src/terminal.go')
-rw-r--r--src/terminal.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/terminal.go b/src/terminal.go
index ed585e9d..9f67032a 100644
--- a/src/terminal.go
+++ b/src/terminal.go
@@ -636,7 +636,7 @@ func NewTerminal(opts *Options, eventBox *util.EventBox) *Terminal {
}
if opts.Scrollbar == nil {
if t.unicode {
- t.scrollbar = "▏" // Left one eighth block
+ t.scrollbar = "│"
} else {
t.scrollbar = "|"
}