Skip to content

Commit

Permalink
fix: add missing func
Browse files Browse the repository at this point in the history
  • Loading branch information
mlcdf committed Dec 10, 2022
1 parent ae85134 commit fbed144
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions internal/cmdutil/cmdutil.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,7 @@ func Highlight(str string) string {
func Special(str string) string {
return lipgloss.NewStyle().Foreground(StyleSpecial).Render(str)
}

func Bold(str string) string {
return lipgloss.NewStyle().Bold(true).Render(str)
}

0 comments on commit fbed144

Please sign in to comment.