diff options
author | Michael Muré <batolettre@gmail.com> | 2018-08-09 14:45:02 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-08-09 14:45:02 +0200 |
commit | 5675299c8dd9488c3b60142d8da8b112473a0cd4 (patch) | |
tree | a8cbd22610c1321e32a04f641d73947c424ff52e /util/colors.go | |
parent | b6087d7e35dd0f687264ef3a743ccc3871bd3b64 (diff) | |
download | git-bug-5675299c8dd9488c3b60142d8da8b112473a0cd4.tar.gz |
termui: commit the bug when quiting the show bug window
Diffstat (limited to 'util/colors.go')
-rw-r--r-- | util/colors.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/colors.go b/util/colors.go index 5169bef1..5aa34363 100644 --- a/util/colors.go +++ b/util/colors.go @@ -3,6 +3,7 @@ package util import "github.com/fatih/color" var ( + Bold = color.New(color.Bold).SprintFunc() Black = color.New(color.FgBlack).SprintFunc() BlackBg = color.New(color.BgBlack, color.FgWhite).SprintFunc() White = color.New(color.FgWhite).SprintFunc() |