1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-01-20 05:19:24 +02:00

Visualize branch heads in commits panel

Useful when working with stacked branches.
This commit is contained in:
Stefan Haller 2023-04-04 09:19:06 +02:00
parent a0d179b6dc
commit 740474c10c

View File

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