1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-28 22:06:38 +02:00

Rename option weechat.completion.nick_completor to nick_completer

This commit is contained in:
Sebastien Helleu
2009-06-10 12:51:36 +02:00
parent 8d58b81d83
commit 335419e6de
5 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -303,7 +303,7 @@
** type: boolean
** values: on, off (default value: on)
* *weechat.completion.nick_completor*
* *weechat.completion.nick_completer*
** description: string inserted after nick completion
** type: string
** values: any string (default value: ":")
+1 -1
View File
@@ -303,7 +303,7 @@
** type: booléen
** valeurs: on, off (valeur par défaut: on)
* *weechat.completion.nick_completor*
* *weechat.completion.nick_completer*
** description: chaîne affichée après la complétion des pseudos
** type: chaîne
** valeurs: toute chaîne (valeur par défaut: ":")
+3 -3
View File
@@ -153,7 +153,7 @@ struct t_config_option *config_color_nicklist_separator;
struct t_config_option *config_completion_default_template;
struct t_config_option *config_completion_nick_add_space;
struct t_config_option *config_completion_nick_completor;
struct t_config_option *config_completion_nick_completer;
struct t_config_option *config_completion_nick_first_only;
struct t_config_option *config_completion_nick_ignore_chars;
struct t_config_option *config_completion_partial_completion_alert;
@@ -1809,9 +1809,9 @@ config_weechat_init_options ()
N_("add space after nick completion (when nick is not first word on "
"command line)"),
NULL, 0, 0, "on", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
config_completion_nick_completor = config_file_new_option (
config_completion_nick_completer = config_file_new_option (
weechat_config_file, ptr_section,
"nick_completor", "string",
"nick_completer", "string",
N_("string inserted after nick completion"),
NULL, 0, 0, ":", NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL);
config_completion_nick_first_only = config_file_new_option (
+1 -1
View File
@@ -164,7 +164,7 @@ extern struct t_config_option *config_color_nicklist_separator;
extern struct t_config_option *config_completion_default_template;
extern struct t_config_option *config_completion_nick_add_space;
extern struct t_config_option *config_completion_nick_completor;
extern struct t_config_option *config_completion_nick_completer;
extern struct t_config_option *config_completion_nick_first_only;
extern struct t_config_option *config_completion_nick_ignore_chars;
extern struct t_config_option *config_completion_partial_completion_alert;
+1 -1
View File
@@ -337,7 +337,7 @@ gui_completion_list_add (struct t_gui_completion *completion, const char *word,
if (nick_completion && (completion->base_word_pos == 0))
{
snprintf (buffer, sizeof (buffer), "%s%s",
word, CONFIG_STRING(config_completion_nick_completor));
word, CONFIG_STRING(config_completion_nick_completer));
weelist_add (completion->completion_list, buffer, where,
(nick_completion) ? (void *)1 : (void *)0);
}