summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2010-11-18 18:27:10 +0100
committerSebastien Helleu <flashcode@flashtux.org>2010-11-18 18:27:10 +0100
commitaec97d2082113d2227460cc9236130773332dcc1 (patch)
tree7ce3d9bad23d8807d1725a255603dee279887366 /src
parent50421cf27f93310c53e71151fa0cafee09f597d9 (diff)
downloadweechat-aec97d2082113d2227460cc9236130773332dcc1.zip
Add note about comma and "+" in help of options weechat.bar.xxx.items
Diffstat (limited to 'src')
-rw-r--r--src/gui/gui-bar.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/gui-bar.c b/src/gui/gui-bar.c
index a70afbf21..9ad708284 100644
--- a/src/gui/gui-bar.c
+++ b/src/gui/gui-bar.c
@@ -1369,7 +1369,8 @@ gui_bar_create_option (const char *bar_name, int index_option, const char *value
ptr_option = config_file_new_option (
weechat_config_file, weechat_config_section_bar,
option_name, "string",
- N_("items of bar"),
+ N_("items of bar, they can be separated by comma (space "
+ "between items) or \"+\" (glued items)"),
NULL, 0, 0, gui_bar_default_items (bar_name), value, 0,
NULL, NULL, &gui_bar_config_change_items, NULL, NULL, NULL);
break;