Rewrite Tab-completion to work with signals - now it should be easy to

add completion to whatever command.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@356 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2000-06-17 11:53:45 +00:00 committed by cras
commit 234e95ef94
9 changed files with 534 additions and 749 deletions

View file

@ -24,6 +24,7 @@
#include "hilight-text.h"
#include "command-history.h"
#include "completion.h"
#include "keyboard.h"
#include "printtext.h"
#include "themes.h"
@ -82,6 +83,7 @@ void fe_common_core_init(void)
autorun_init();
hilight_text_init();
command_history_init();
completion_init();
keyboard_init();
printtext_init();
fe_log_init();
@ -100,6 +102,7 @@ void fe_common_core_deinit(void)
autorun_deinit();
hilight_text_deinit();
command_history_deinit();
completion_deinit();
keyboard_deinit();
printtext_deinit();
fe_log_deinit();