Skip to content

Commit

Permalink
format/tmux: add missing spaces after symbols (#25)
Browse files Browse the repository at this point in the history
The 'staged' and 'untracked' symbols are both missing a trailing
space in the default configuration. With some fixed fonts (for
instance the stock Ubuntu font) this makes difficult to discern
between the symbol and the number following it.

Fixes #24
  • Loading branch information
arl authored Jun 7, 2020
1 parent 2266606 commit 5ef17f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions format/tmux/formater.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ type styles struct {
var DefaultCfg = Config{
Symbols: symbols{
Branch: "⎇ ",
Staged: "●",
Staged: "● ",
Conflict: "✖ ",
Modified: "✚ ",
Untracked: "…",
Untracked: "… ",
Stashed: "⚑ ",
Clean: "✔",
Ahead: "↑·",
Expand Down

0 comments on commit 5ef17f1

Please # to comment.