1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-05 00:59:19 +02:00

bump gocui

This commit is contained in:
Jesse Duffield
2020-03-01 19:17:56 +11:00
parent 1cd7d14029
commit 113252b0ae
4 changed files with 8 additions and 6 deletions

View File

@ -152,13 +152,13 @@ func (ei *escapeInterpreter) outputNormal() error {
switch {
case p >= 30 && p <= 37:
ei.curFgColor = Attribute(p - 30 + 1)
ei.curFgColor |= Attribute(p - 30 + 1)
case p == 39:
ei.curFgColor = ColorDefault
ei.curFgColor |= ColorDefault
case p >= 40 && p <= 47:
ei.curBgColor = Attribute(p - 40 + 1)
ei.curBgColor |= Attribute(p - 40 + 1)
case p == 49:
ei.curBgColor = ColorDefault
ei.curBgColor |= ColorDefault
case p == 1:
ei.curFgColor |= AttrBold
case p == 4: