From 49a03c3e78a72135c53792091878a94f1399ed15 Mon Sep 17 00:00:00 2001 From: rsteube Date: Wed, 20 Dec 2023 00:35:58 +0100 Subject: [PATCH] xonsh: fix dim --- internal/shell/xonsh/style.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/shell/xonsh/style.go b/internal/shell/xonsh/style.go index 30072cb31..6658b4142 100644 --- a/internal/shell/xonsh/style.go +++ b/internal/shell/xonsh/style.go @@ -29,7 +29,7 @@ func convertStyle(s string) string { } if style.Dim { // TODO dim not supported if style.Foreground == nil || style.Foreground.String() == "white" { - xonshStyle[0] = "fg:#808080" // TODO workaround + xonshStyle[1] = "fg:#808080" // TODO workaround } } if style.Italic {