comparison mcabber/src/compl.h @ 284:f879b17ecb8e

Add compl_del_category_word() This will allow us to remove an alias completion when it is unset.
author Mikael Berthe <mikael@lilotux.net>
date Thu, 07 Jul 2005 22:12:29 +0100
parents 8e30b2bb380e
children 03bb57383cea
comparison
equal deleted inserted replaced
283:00b2377539ac 284:f879b17ecb8e
14 #define COMPL_GROUP (1<<9) 14 #define COMPL_GROUP (1<<9)
15 #define COMPL_GROUPNAME (1<<10) 15 #define COMPL_GROUPNAME (1<<10)
16 #define COMPL_MULTILINE (1<<11) 16 #define COMPL_MULTILINE (1<<11)
17 17
18 void compl_add_category_word(guint, const char *command); 18 void compl_add_category_word(guint, const char *command);
19 void compl_del_category_word(guint categ, const char *word);
19 GSList *compl_get_category_list(guint cat_flags); 20 GSList *compl_get_category_list(guint cat_flags);
20 21
21 void new_completion(char *prefix, GSList *compl_cat); 22 void new_completion(char *prefix, GSList *compl_cat);
22 void done_completion(void); 23 void done_completion(void);
23 guint cancel_completion(void); 24 guint cancel_completion(void);