comparison mcabber/src/commands.c @ 902:2016f52a167f

Sort commands (for the completion system)
author Mikael Berthe <mikael@lilotux.net>
date Wed, 21 Jun 2006 20:50:56 +0200
parents b41684465283
children 27a7b2f986f5
comparison
equal deleted inserted replaced
901:45ddb3ada74f 902:2016f52a167f
102 cmd_add("info", "Show basic info on current buddy", 0, 0, &do_info); 102 cmd_add("info", "Show basic info on current buddy", 0, 0, &do_info);
103 cmd_add("move", "Move the current buddy to another group", COMPL_GROUPNAME, 103 cmd_add("move", "Move the current buddy to another group", COMPL_GROUPNAME,
104 0, &do_move); 104 0, &do_move);
105 cmd_add("msay", "Send a multi-lines message to the selected buddy", 105 cmd_add("msay", "Send a multi-lines message to the selected buddy",
106 COMPL_MULTILINE, 0, &do_msay); 106 COMPL_MULTILINE, 0, &do_msay);
107 cmd_add("room", "MUC actions command", COMPL_ROOM, 0, &do_room);
108 cmd_add("request", "Send a Jabber IQ request", COMPL_REQUEST, COMPL_JID,
109 &do_request);
110 cmd_add("quit", "Exit the software", 0, 0, NULL); 107 cmd_add("quit", "Exit the software", 0, 0, NULL);
111 cmd_add("rawxml", "Send a raw XML string", 0, 0, &do_rawxml); 108 cmd_add("rawxml", "Send a raw XML string", 0, 0, &do_rawxml);
112 cmd_add("rename", "Rename the current buddy", 0, 0, &do_rename); 109 cmd_add("rename", "Rename the current buddy", 0, 0, &do_rename);
110 cmd_add("request", "Send a Jabber IQ request", COMPL_REQUEST, COMPL_JID,
111 &do_request);
112 cmd_add("room", "MUC actions command", COMPL_ROOM, 0, &do_room);
113 cmd_add("roster", "Manipulate the roster/buddylist", COMPL_ROSTER, 0, 113 cmd_add("roster", "Manipulate the roster/buddylist", COMPL_ROSTER, 0,
114 &do_roster); 114 &do_roster);
115 cmd_add("say", "Say something to the selected buddy", 0, 0, &do_say); 115 cmd_add("say", "Say something to the selected buddy", 0, 0, &do_say);
116 cmd_add("say_to", "Say something to a specific buddy", COMPL_JID, 0, 116 cmd_add("say_to", "Say something to a specific buddy", COMPL_JID, 0,
117 &do_say_to); 117 &do_say_to);