diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2006-03-08 15:31:26 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2006-03-08 15:31:26 +0000 |
commit | 227c05447f65d85a1bd70d5e5e09acbcd0109523 (patch) | |
tree | 8e30e34e016ac73a84d42ad311849b91acfe630e /src/common/command.h | |
parent | 1005890db28b9e5101132d929241d72b6b146f9a (diff) | |
download | weechat-227c05447f65d85a1bd70d5e5e09acbcd0109523.zip |
Improved alias completion (now uses target command for completion)
Diffstat (limited to 'src/common/command.h')
-rw-r--r-- | src/common/command.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/command.h b/src/common/command.h index c87d31061..486de9b58 100644 --- a/src/common/command.h +++ b/src/common/command.h @@ -63,7 +63,9 @@ extern t_weelist *last_index_command; extern void command_index_build (); extern void command_index_free (); +extern t_weechat_alias *alias_search (char *); extern t_weechat_alias *alias_new (char *, char *); +extern char *alias_get_final_command (t_weechat_alias *); extern void alias_free_all (); extern char **explode_string (char *, char *, int, int *); extern void free_exploded_string (char **); |