test: add test for custom styles

This commit is contained in:
bashbunni
2024-03-13 21:07:19 -07:00
parent ef3b2d1936
commit c271197076
4 changed files with 230 additions and 3 deletions
+4 -2
View File
@@ -28,8 +28,10 @@ const (
PinkStyle = "pink"
)
const defaultWidth = 80
const highPriority = 1000
const (
defaultWidth = 80
highPriority = 1000
)
// A TermRendererOption sets an option on a TermRenderer.
type TermRendererOption func(*TermRenderer) error