mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-08-08 22:36:49 +02:00
Remove space after rebase todo
This is very old; I can only guess that this was added at a time where today's list column handling wasn't in place yet, so the space was needed to separate columns. This now causes a gap of two spaces between the rebase todo column and the author column, which I'm sure wasn't intended. Funny that I never noticed.
This commit is contained in:
@ -387,7 +387,7 @@ func displayCommit(
|
||||
|
||||
actionString := ""
|
||||
if commit.Action != models.ActionNone {
|
||||
actionString = actionColorMap(commit.Action, commit.Status).Sprint(commit.Action.String()) + " "
|
||||
actionString = actionColorMap(commit.Action, commit.Status).Sprint(commit.Action.String())
|
||||
}
|
||||
|
||||
tagString := ""
|
||||
|
Reference in New Issue
Block a user