Add LowPrefix to Empty style, move to beginning of list
parent
2e4ee0843c
commit
10d4b295f3
|
@ -49,6 +49,7 @@ type style struct {
|
|||
// styles is a map of style name to style struct
|
||||
// For consistency, ensure that emojis added render with the same width across platforms.
|
||||
var styles = map[StyleEnum]style{
|
||||
Empty: {Prefix: "", LowPrefix: ""},
|
||||
Happy: {Prefix: "😄 "},
|
||||
SuccessType: {Prefix: "✅ "},
|
||||
FailureType: {Prefix: "❌ "},
|
||||
|
@ -79,7 +80,6 @@ var styles = map[StyleEnum]style{
|
|||
Issue: {Prefix: " ▪ ", LowPrefix: lowIndent}, // Indented bullet
|
||||
Check: {Prefix: "✔️ "},
|
||||
Celebration: {Prefix: "🎉 "},
|
||||
Empty: {Prefix: ""},
|
||||
|
||||
// Specialized purpose styles
|
||||
ISODownload: {Prefix: "💿 "},
|
||||
|
|
Loading…
Reference in New Issue