Skip to content

Commit

Permalink
Merge pull request #965 from rsteube/xonsh-fix-dim
Browse files Browse the repository at this point in the history
xonsh: fix dim
  • Loading branch information
rsteube committed Dec 19, 2023
2 parents 73c52a4 + 49a03c3 commit d84e02f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/shell/xonsh/style.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit d84e02f

Please sign in to comment.