Fixed bug with nick completion in command args (now uses option look_nick_completion_ignore)

This commit is contained in:
Sebastien Helleu 2006-12-08 15:22:44 +00:00
parent a1bc5ce60f
commit 59158c48d3
4 changed files with 8 additions and 2 deletions

View File

@ -1,10 +1,12 @@
WeeChat - Wee Enhanced Environment for Chat
===========================================
ChangeLog - 2006-12-05
ChangeLog - 2006-12-08
Version 0.2.2 (under dev!):
* fixed bug with nick completion in command args (now uses option
look_nick_completion_ignore)
* fixed display bug with color for first line on screen (bug #17719)
* added anti-flood option (irc_anti_flood) (task #5442)
* fixed bug with "set_config" function in plugins API (bug #18448)

View File

@ -868,6 +868,7 @@ completion_build_list_template (t_completion *completion, char *template)
break;
case 'n': /* channel nicks */
completion_list_add_channel_nicks (completion);
completion->context = COMPLETION_NICK;
break;
case 'N': /* channel nicks and hosts */
completion_list_add_channel_nicks_hosts (completion);

View File

@ -1,10 +1,12 @@
WeeChat - Wee Enhanced Environment for Chat
===========================================
ChangeLog - 2006-12-05
ChangeLog - 2006-12-08
Version 0.2.2 (under dev!):
* fixed bug with nick completion in command args (now uses option
look_nick_completion_ignore)
* fixed display bug with color for first line on screen (bug #17719)
* added anti-flood option (irc_anti_flood) (task #5442)
* fixed bug with "set_config" function in plugins API (bug #18448)

View File

@ -868,6 +868,7 @@ completion_build_list_template (t_completion *completion, char *template)
break;
case 'n': /* channel nicks */
completion_list_add_channel_nicks (completion);
completion->context = COMPLETION_NICK;
break;
case 'N': /* channel nicks and hosts */
completion_list_add_channel_nicks_hosts (completion);