From 822dc5dada5610dfdea7013883a375ea35c09781 Mon Sep 17 00:00:00 2001 From: Glenn Vriesman Date: Mon, 10 Dec 2018 12:26:30 +0100 Subject: [PATCH] Moved push-pullables status to the end --- pkg/commands/branch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/commands/branch.go b/pkg/commands/branch.go index 49655c41a..419a106d2 100644 --- a/pkg/commands/branch.go +++ b/pkg/commands/branch.go @@ -22,7 +22,7 @@ type Branch struct { func (b *Branch) GetDisplayStrings() []string { displayName := utils.ColoredString(b.Name, b.GetColor()) if b.Selected && b.Pushables != "" && b.Pullables != "" { - displayName = fmt.Sprintf("↑%s↓%s %s", b.Pushables, b.Pullables, displayName) + displayName = fmt.Sprintf("%s ↑%s↓%s", displayName, b.Pushables, b.Pullables) } return []string{b.Recency, displayName}