diff options
author | Timo Sirainen <cras@irssi.org> | 2000-07-26 17:18:52 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-07-26 17:18:52 +0000 |
commit | 1fe6d11d7e628d94ebafaeb5eefa37457e44a0d6 (patch) | |
tree | a6b2a172d478467b62220b270ecd32ec5039314c | |
parent | 7f104ed15c2206c704698266f8caa01c2d6c2e7b (diff) | |
download | irssi-1fe6d11d7e628d94ebafaeb5eefa37457e44a0d6.zip |
Command completion should override others.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@535 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | src/fe-common/core/completion.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |