Skip to content

Commit a35b9da

Browse files
committed
fix: Support bold ANSI escape sequence
1 parent 425055f commit a35b9da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ansi.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ func (p *dispatcher) CsiDispatch(s ansi.CsiSequence) {
138138
case 0:
139139
reset()
140140
case 1:
141-
// span.CreateAttr("font-weight", "bold")
141+
span.CreateAttr("font-weight", "bold")
142142
p.lines[p.row].AddChild(span)
143143
case 9:
144144
span.CreateAttr("text-decoration", "line-through")

0 commit comments

Comments
 (0)