From 1fe6d11d7e628d94ebafaeb5eefa37457e44a0d6 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Wed, 26 Jul 2000 17:18:52 +0000 Subject: [PATCH] Command completion should override others. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@535 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-common/core/completion.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fe-common/core/completion.c b/src/fe-common/core/completion.c index 10153159..c67c199c 100644 --- a/src/fe-common/core/completion.c +++ b/src/fe-common/core/completion.c @@ -598,7 +598,7 @@ void completion_init(void) complist = NULL; last_line = NULL; last_line_pos = -1; - signal_add("complete word", (SIGNAL_FUNC) sig_complete_word); + signal_add_first("complete word", (SIGNAL_FUNC) sig_complete_word); signal_add("complete command set", (SIGNAL_FUNC) sig_complete_set); signal_add("complete command toggle", (SIGNAL_FUNC) sig_complete_toggle); signal_add("complete command cat", (SIGNAL_FUNC) sig_complete_filename);