1
1
mirror of https://github.com/walles/moar.git synced 2024-11-22 03:14:56 +03:00

Remove no-longer-needed code

This commit is contained in:
Johan Walles 2024-08-12 20:31:11 +02:00
parent f26ae4ff9a
commit 43f17ebe7b
2 changed files with 2 additions and 12 deletions

View File

@ -156,16 +156,6 @@ func (color Color) ansiString(cType colorType, terminalColorCount ColorCount) st
panic(fmt.Errorf("unhandled color type=%d %s", color.ColorCount(), color.String()))
}
func (color Color) ForegroundAnsiString(terminalColorCount ColorCount) string {
// FIXME: Test this function with all different color types.
return color.ansiString(colorTypeForeground, terminalColorCount)
}
func (color Color) BackgroundAnsiString(terminalColorCount ColorCount) string {
// FIXME: Test this function with all different color types.
return color.ansiString(colorTypeBackground, terminalColorCount)
}
func (color Color) String() string {
switch color.ColorCount() {
case ColorCountDefault:

View File

@ -152,11 +152,11 @@ func (current Style) RenderUpdateFrom(previous Style, terminalColorCount ColorCo
var builder strings.Builder
if current.fg != previous.fg {
builder.WriteString(current.fg.ForegroundAnsiString(terminalColorCount))
builder.WriteString(current.fg.ansiString(colorTypeForeground, terminalColorCount))
}
if current.bg != previous.bg {
builder.WriteString(current.bg.BackgroundAnsiString(terminalColorCount))
builder.WriteString(current.bg.ansiString(colorTypeBackground, terminalColorCount))
}
// Handle AttrDim / AttrBold changes