1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-04-13 11:50:28 +02:00
This commit is contained in:
Jesse Duffield 2021-04-11 23:40:03 +10:00
parent 1f3070c882
commit 5453b71fd1

View File

@ -46,13 +46,11 @@ func (gui *Gui) printCommandLogHeader() {
) )
fmt.Fprintln(gui.Views.Extras, utils.ColoredString(introStr, color.FgCyan)) fmt.Fprintln(gui.Views.Extras, utils.ColoredString(introStr, color.FgCyan))
fmt.Fprint( fmt.Fprintf(
gui.Views.Extras, gui.Views.Extras,
fmt.Sprintf( "%s: %s",
"%s: %s", utils.ColoredString(gui.Tr.RandomTip, color.FgYellow),
utils.ColoredString(gui.Tr.RandomTip, color.FgYellow), utils.ColoredString(gui.getRandomTip(), color.FgGreen),
utils.ColoredString(gui.getRandomTip(), color.FgGreen),
),
) )
} }