diff options
Diffstat (limited to 'src/plugins/fset/fset-config.c')
-rw-r--r-- | src/plugins/fset/fset-config.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/plugins/fset/fset-config.c b/src/plugins/fset/fset-config.c index 650c277e5..8cc9d1690 100644 --- a/src/plugins/fset/fset-config.c +++ b/src/plugins/fset/fset-config.c @@ -460,10 +460,13 @@ fset_config_init () "option1", "string", N_("first format of each line with an option which is not marked " "nor the selected one " - "(note: content is evaluated, see /help fset); formats can be " - "switched with key ctrl+X"), + "(note: content is evaluated, see /help fset); " + "an empty string uses the default format " + "(\"${marked} ${name} ${type} ${value2}\"), which is without " + "evaluation of string and then much faster; " + "formats can be switched with key ctrl+X"), NULL, 0, 0, - "${marked} ${name} ${type} ${value2}", + "", NULL, 0, NULL, NULL, NULL, &fset_config_change_format_cb, NULL, NULL, @@ -474,6 +477,9 @@ fset_config_init () N_("second format of each line with an option which is not marked " "not the selected one " "(note: content is evaluated, see /help fset); " + "an empty string uses the default format " + "(\"${marked} ${name} ${type} ${value2}\"), which is without " + "evaluation of string and then much faster; " "formats can be switched with key ctrl+X"), NULL, 0, 0, "${marked} ${name} ${type} ${value2}${newline}" |