mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Removed /help other
This commit is contained in:
parent
9f2f54b2a0
commit
48929aa92e
4
TODO_045
Normal file
4
TODO_045
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
Check all commands from private conversations
|
||||||
|
Test all freetext args
|
||||||
|
Make form editing commands less verbose
|
||||||
|
Check /help groupings (add new commands)
|
@ -1,2 +0,0 @@
|
|||||||
Check all commands from private conversations
|
|
||||||
Test all freetext args
|
|
@ -1050,7 +1050,6 @@ cmd_init(void)
|
|||||||
autocomplete_add(help_ac, "contacts");
|
autocomplete_add(help_ac, "contacts");
|
||||||
autocomplete_add(help_ac, "service");
|
autocomplete_add(help_ac, "service");
|
||||||
autocomplete_add(help_ac, "settings");
|
autocomplete_add(help_ac, "settings");
|
||||||
autocomplete_add(help_ac, "other");
|
|
||||||
autocomplete_add(help_ac, "navigation");
|
autocomplete_add(help_ac, "navigation");
|
||||||
|
|
||||||
// load command defs into hash table
|
// load command defs into hash table
|
||||||
|
@ -615,10 +615,6 @@ cmd_help(gchar **args, struct cmd_help_t help)
|
|||||||
"/titlebar", "/vercheck" };
|
"/titlebar", "/vercheck" };
|
||||||
_cmd_show_filtered_help("Settings commands", filter, ARRAY_SIZE(filter));
|
_cmd_show_filtered_help("Settings commands", filter, ARRAY_SIZE(filter));
|
||||||
|
|
||||||
} else if (strcmp(args[0], "other") == 0) {
|
|
||||||
gchar *filter[] = { "/vercheck" };
|
|
||||||
_cmd_show_filtered_help("Other commands", filter, ARRAY_SIZE(filter));
|
|
||||||
|
|
||||||
} else if (strcmp(args[0], "navigation") == 0) {
|
} else if (strcmp(args[0], "navigation") == 0) {
|
||||||
cons_navigation_help();
|
cons_navigation_help();
|
||||||
} else {
|
} else {
|
||||||
|
@ -1286,7 +1286,6 @@ _cons_help(void)
|
|||||||
cons_show("/help roster - List commands for manipulating your roster.");
|
cons_show("/help roster - List commands for manipulating your roster.");
|
||||||
cons_show("/help service - List service discovery commands.");
|
cons_show("/help service - List service discovery commands.");
|
||||||
cons_show("/help settings - List commands for changing settings.");
|
cons_show("/help settings - List commands for changing settings.");
|
||||||
cons_show("/help other - Other commands.");
|
|
||||||
cons_show("/help navigation - How to navigate around Profanity.");
|
cons_show("/help navigation - How to navigate around Profanity.");
|
||||||
cons_show("/help [command] - Detailed help on a specific command.");
|
cons_show("/help [command] - Detailed help on a specific command.");
|
||||||
cons_show("");
|
cons_show("");
|
||||||
|
Loading…
Reference in New Issue
Block a user