More tab completion: /DISCONNECT, /SERVER ADD|REMOVE, /STATS

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2954 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2002-10-14 16:12:01 +00:00 committed by cras
commit fb5c4c8037
5 changed files with 108 additions and 1 deletions

View file

@ -1,6 +1,12 @@
#ifndef __CHAT_COMPLETION_H
#define __CHAT_COMPLETION_H
GList *completion_get_chatnets(const char *word);
GList *completion_get_servers(const char *word);
GList *completion_get_servertags(const char *word);
GList *completion_get_channels(SERVER_REC *server, const char *word);
GList *completion_get_aliases(const char *word);
void completion_last_message_add(const char *nick);
void completion_last_message_remove(const char *nick);
void completion_last_message_rename(const char *oldnick, const char *newnick);