1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-01 23:36:37 +02:00

irc: add invite-notify capability to help and completion

This commit is contained in:
Simmo Saan
2017-11-05 13:42:28 +02:00
parent 61bede8805
commit d4296a02c0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -6161,7 +6161,7 @@ irc_command_init ()
"\n"
"Capabilities supported by WeeChat are: "
"account-notify, away-notify, cap-notify, extended-join, "
"multi-prefix, server-time, userhost-in-names.\n"
"invite-notify, multi-prefix, server-time, userhost-in-names.\n"
"\n"
"The capabilities to automatically enable on servers can be set "
"in option irc.server_default.capabilities (or by server in "
+1 -1
View File
@@ -46,7 +46,7 @@ struct t_irc_channel;
/* list of supported capabilities (for completion in command /cap) */
#define IRC_COMMAND_CAP_SUPPORTED_COMPLETION \
"account-notify|away-notify|cap-notify|extended-join|" \
"multi-prefix|server-time|userhost-in-names|%*"
"invite-notify|multi-prefix|server-time|userhost-in-names|%*"
extern void irc_command_away_server (struct t_irc_server *server,
const char *arguments,