Skip to content

Commit

Permalink
Extend config help text
Browse files Browse the repository at this point in the history
  • Loading branch information
jotaen committed Aug 17, 2024
1 parent 9c97ce2 commit ad3514d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion klog/app/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ var CONFIG_FILE_ENTRIES = []ConfigFileEntries[any]{
},
Help: Help{
Summary: "The colour scheme of your terminal, so that klog can choose an optimal colour theme for its output.",
Value: "The config property must be one of: `dark`, `light` or `no_colour`",
Value: "The config property must be one of: `dark`, `light`, `basic`, or `no_colour`",
Default: "If absent/empty, klog assumes a `dark` theme.",
},
}, {
Expand Down
1 change: 1 addition & 0 deletions klog/app/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ func TestSetsColourSchemeParamFromConfigFile(t *testing.T) {
}{
{`colour_scheme = dark`, tf.COLOUR_THEME_DARK},
{`colour_scheme = light`, tf.COLOUR_THEME_LIGHT},
{`colour_scheme = basic`, tf.COLOUR_THEME_BASIC},
{`colour_scheme = no_colour`, tf.COLOUR_THEME_NO_COLOUR},
} {
c, _ := NewConfig(
Expand Down

0 comments on commit ad3514d

Please sign in to comment.