1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03:00

add bold style for border

This commit is contained in:
aidancz
2025-06-14 17:14:13 +08:00
committed by Stefan Haller
parent fb2c5ea8b6
commit 80bbdf41fb
5 changed files with 9 additions and 6 deletions

View File

@ -159,6 +159,8 @@ func (gui *Gui) configureViewProperties() {
frameRunes = []rune{'─', '│', '╭', '╮', '╰', '╯'}
case "hidden":
frameRunes = []rune{' ', ' ', ' ', ' ', ' ', ' '}
case "bold":
frameRunes = []rune{'━', '┃', '┏', '┓', '┗', '┛'}
}
for _, mapping := range gui.orderedViewNameMappings() {