1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-06 17:53:13 +02:00

Added default nick completion when line starts with '//' (bug #17535)

This commit is contained in:
Sebastien Helleu
2006-08-26 13:26:29 +00:00
parent bb021e567a
commit 311ac060ce
4 changed files with 4 additions and 2 deletions
+1
View File
@@ -5,6 +5,7 @@ ChangeLog - 2006-08-26
Version 0.2.1 (under dev!):
* added default nick completion when line starts with '//' (bug #17535)
* values yes/no accepted (as on/off) for config boolean values (task #5454)
* added server default notify level (set by /buffer notify on server buffer)
(task #5634)
+1 -1
View File
@@ -875,7 +875,7 @@ completion_find_context (t_completion *completion, char *buffer, int size, int p
/* look for context */
completion_free (completion);
command = (buffer[0] == '/') ? 1 : 0;
command = ((buffer[0] == '/') && (buffer[1] != '/')) ? 1 : 0;
command_arg = 0;
i = 0;
while (i < pos)
+1
View File
@@ -5,6 +5,7 @@ ChangeLog - 2006-08-26
Version 0.2.1 (under dev!):
* added default nick completion when line starts with '//' (bug #17535)
* values yes/no accepted (as on/off) for config boolean values (task #5454)
* added server default notify level (set by /buffer notify on server buffer)
(task #5634)
+1 -1
View File
@@ -875,7 +875,7 @@ completion_find_context (t_completion *completion, char *buffer, int size, int p
/* look for context */
completion_free (completion);
command = (buffer[0] == '/') ? 1 : 0;
command = ((buffer[0] == '/') && (buffer[1] != '/')) ? 1 : 0;
command_arg = 0;
i = 0;
while (i < pos)