diff options
Diffstat (limited to 'src/plugins/irc/irc-command.h')
-rw-r--r-- | src/plugins/irc/irc-command.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/plugins/irc/irc-command.h b/src/plugins/irc/irc-command.h index 358bc6385..ac48c941f 100644 --- a/src/plugins/irc/irc-command.h +++ b/src/plugins/irc/irc-command.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org> + * Copyright (C) 2003-2016 Sébastien Helleu <flashcode@flashtux.org> * * This file is part of WeeChat, the extensible chat client. * @@ -45,9 +45,12 @@ struct t_irc_channel; /* list of supported capabilities (for completion in command /cap) */ #define IRC_COMMAND_CAP_SUPPORTED_COMPLETION \ - "account-notify|away-notify|extended-join|" \ - "multi-prefix|server-time|userhost-in-names" \ - "|%*" + "account-notify|away-notify|cap-notify|extended-join|" \ + "multi-prefix|server-time|userhost-in-names|%*" + +/* list of supported CTCPs (for completion in command /ctcp) */ +#define IRC_COMMAND_CTCP_SUPPORTED_COMPLETION \ + "action|clientinfo|finger|ping|source|time|userinfo|version" extern void irc_command_away_server (struct t_irc_server *server, const char *arguments, |