@@ -188,7 +188,7 @@ static void help_draw_global(ToxWindow *self)
188
188
wprintw (win , " /log <on>|<off> : Enable/disable logging\n" );
189
189
wprintw (win , " /myid : Print your Tox ID\n" );
190
190
wprintw (win , " /group <name> : Create a new group chat\n" );
191
- wprintw (win , " /join <chatid> : Join a groupchat using a Chat ID\n" );
191
+ wprintw (win , " /join <chatid> : Join a public groupchat using a Chat ID\n" );
192
192
#ifdef GAMES
193
193
wprintw (win , " /game : Play a game\n" );
194
194
#endif /* GAMES */
@@ -302,25 +302,25 @@ static void help_draw_groupchats(ToxWindow *self)
302
302
wprintw (win , " /chatid : Print this group's ID\n" );
303
303
wprintw (win , " /close <m> : Leave the group with an optional part message\n" );
304
304
wprintw (win , " /disconnect : Disconnect from the group (credentials retained)\n" );
305
- wprintw (win , " /ignore <name> : Ignore a peer\n" );
306
- wprintw (win , " /unignore <name> : Unignore an ignored peer\n" );
307
- wprintw (win , " /kick <name> : Remove a peer from the group\n" );
305
+ wprintw (win , " /ignore <name>|<key> : Ignore a peer\n" );
306
+ wprintw (win , " /unignore <name>|<key> : Unignore a peer\n" );
307
+ wprintw (win , " /kick <name>|<key> : Remove a peer from the group\n" );
308
308
wprintw (win , " /list : Print a list of peers currently in the group\n" );
309
309
wprintw (win , " /locktopic : Set the topic lock: on | off\n" );
310
- wprintw (win , " /mod <name> : Promote a peer to moderator\n" );
311
- wprintw (win , " /nick <name> : Set your name for this group only\n" );
312
- wprintw (win , " /passwd <s> : Set a password needed to join the group\n" );
310
+ wprintw (win , " /mod <name>|<key> : Promote a peer to moderator\n" );
311
+ wprintw (win , " /nick <name> : Set your name ( for this group only) \n" );
312
+ wprintw (win , " /passwd <s> : Set a password to join the group\n" );
313
313
wprintw (win , " /peerlimit <n> : Set the maximum number of peers that can join\n" );
314
314
wprintw (win , " /privacy <state> : Set the privacy state: private | public\n" );
315
- wprintw (win , " /rejoin : Reconnect to the groupchat \n" );
316
- wprintw (win , " /silence <name> : Silence a peer for the entire group\n" );
317
- wprintw (win , " /unsilence <name> : Unsilence a silenced peer\n" );
318
- wprintw (win , " /status <type> : Set your status\n" );
319
- wprintw (win , " /topic <m> : Set the group topic\n" );
320
- wprintw (win , " /unmod <name> : Demote a moderator\n" );
315
+ wprintw (win , " /rejoin : Reconnect to the group \n" );
316
+ wprintw (win , " /silence <name>|<key> : Silence a peer for the entire group\n" );
317
+ wprintw (win , " /unsilence <name>|<key> : Unsilence a silenced peer\n" );
318
+ wprintw (win , " /status <type> : Set your status (client-wide) \n" );
319
+ wprintw (win , " /topic <m> : Set the topic\n" );
320
+ wprintw (win , " /unmod <name>|<key> : Demote a moderator\n" );
321
321
wprintw (win , " /voice <state> : Set the voice state: all | mod | founder\n" );
322
- wprintw (win , " /whisper <name> <m> : Send a private message to a peer\n" );
323
- wprintw (win , " /whois <name> : Print whois info for a peer\n" );
322
+ wprintw (win , " /whisper <name>|<key> <m> : Send a private message to a peer\n" );
323
+ wprintw (win , " /whois <name>|<key> : Display whois info for a peer\n" );
324
324
325
325
help_draw_bottom_menu (win );
326
326
@@ -342,8 +342,8 @@ static void help_draw_keys(ToxWindow *self)
342
342
wprintw (win , " Page Up and Page Down : Scroll window history one line\n" );
343
343
wprintw (win , " Ctrl+F and Ctrl+V : Scroll window history half a page\n" );
344
344
wprintw (win , " Ctrl+H : Move to the bottom of window history\n" );
345
- wprintw (win , " Ctrl+up and Ctrl+down : Scroll peer list in conference \n" );
346
- wprintw (win , " Ctrl+B : Toggle the conference peerlist \n" );
345
+ wprintw (win , " Ctrl+up and Ctrl+down : Scroll groupchat/conference peer list\n" );
346
+ wprintw (win , " Ctrl+B : Toggle groupchat/ conference peer list \n" );
347
347
wprintw (win , " Ctrl+J : Insert new line\n" );
348
348
wprintw (win , " Ctrl+T : Toggle paste mode\n\n" );
349
349
wprintw (win , " (Note: Custom keybindings override these defaults.)\n\n" );
0 commit comments