1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-31 14:24:25 +03:00

Remove the old experimentalShowBranchHeads mechanism and config

We are going to replace it with a better one later in this branch.
This commit is contained in:
Stefan Haller
2023-07-11 13:48:18 +02:00
parent 7b8ebfa27e
commit 9c57444adc
5 changed files with 43 additions and 111 deletions

View File

@ -289,8 +289,6 @@ func displayCommit(
} else {
if len(commit.Tags) > 0 {
tagString = theme.DiffTerminalColor.SetBold().Sprint(strings.Join(commit.Tags, " ")) + " "
} else if common.UserConfig.Gui.ExperimentalShowBranchHeads && commit.ExtraInfo != "" {
tagString = style.FgMagenta.SetBold().Sprint("(*)") + " "
}
}