mirror of
https://github.com/weechat/weechat.git
synced 2026-07-05 01:03:14 +02:00
core: add option weechat.completion.nick_case_sensitive (closes #981)
This commit is contained in:
@@ -264,6 +264,7 @@ struct t_config_option *config_completion_base_word_until_cursor;
|
||||
struct t_config_option *config_completion_command_inline;
|
||||
struct t_config_option *config_completion_default_template;
|
||||
struct t_config_option *config_completion_nick_add_space;
|
||||
struct t_config_option *config_completion_nick_case_sensitive;
|
||||
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;
|
||||
@@ -4105,6 +4106,12 @@ config_weechat_init_options ()
|
||||
"command line)"),
|
||||
NULL, 0, 0, "on", NULL, 0,
|
||||
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
||||
config_completion_nick_case_sensitive = config_file_new_option (
|
||||
weechat_config_file, ptr_section,
|
||||
"nick_case_sensitive", "boolean",
|
||||
N_("case sensitive completion for nicks"),
|
||||
NULL, 0, 0, "off", NULL, 0,
|
||||
NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
|
||||
config_completion_nick_completer = config_file_new_option (
|
||||
weechat_config_file, ptr_section,
|
||||
"nick_completer", "string",
|
||||
|
||||
@@ -310,6 +310,7 @@ extern struct t_config_option *config_completion_base_word_until_cursor;
|
||||
extern struct t_config_option *config_completion_command_inline;
|
||||
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_case_sensitive;
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user