Add /query (alias of /msg)

https://github.com/haavard/tox-weechat/issues/12
This commit is contained in:
Håvard Pettersson 2017-02-18 20:38:06 -08:00
parent 17ae6d845e
commit 9c1d362497
1 changed files with 7 additions and 0 deletions

View File

@ -1246,6 +1246,13 @@ twc_commands_init()
"%(tox_friend_name)|%(tox_friend_tox_id)", twc_cmd_msg,
NULL, NULL);
weechat_hook_command("query", "send a message to a Tox friend",
"<number>|<name>|<Tox ID> [<message>]",
"number, name, Tox ID: friend to message\n"
"message: message to send",
"%(tox_friend_name)|%(tox_friend_tox_id)", twc_cmd_msg,
NULL, NULL);
weechat_hook_command("myid", "get your Tox ID to give to friends", "", "",
NULL, twc_cmd_myid, NULL, NULL);