1
1
mirror of https://github.com/walles/moar.git synced 2024-11-27 01:05:23 +03:00

Handle warnings in moar.go

This commit is contained in:
Johan Walles 2024-01-01 13:42:42 +01:00
parent ff74c2d27c
commit 4e4d7fd923

View File

@ -160,7 +160,7 @@ func parseStyleOption(styleOption string) (chroma.Style, error) {
style, ok := styles.Registry[styleOption]
if !ok {
return *styles.Fallback, fmt.Errorf(
"Pick a style from here: https://xyproto.github.io/splash/docs/longer/all.html\n")
"Pick a style from here: https://xyproto.github.io/splash/docs/longer/all.html")
}
return *style, nil
@ -187,7 +187,7 @@ func parseColorsOption(colorsOption string) (twin.ColorType, error) {
}
var noColor twin.ColorType
return noColor, fmt.Errorf("Valid counts are 8, 16, 256, 16M or auto.")
return noColor, fmt.Errorf("Valid counts are 8, 16, 256, 16M or auto")
}
func parseStatusBarStyle(styleOption string) (m.StatusBarOption, error) {