diff options
author | Emanuele Giaquinta <exg@irssi.org> | 2008-05-15 17:17:53 +0000 |
---|---|---|
committer | exg <exg@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2008-05-15 17:17:53 +0000 |
commit | 24fe627a255a07eefb2c17285ee7d573e97fc479 (patch) | |
tree | 0d6bcf7707d873809d69d95cb1b09f0c25ed4783 /src/fe-common | |
parent | 37b8c5564092b9ce1595cbe99e2049d43829ee04 (diff) | |
download | irssi-24fe627a255a07eefb2c17285ee7d573e97fc479.zip |
Complete server tags for /window server.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4827 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'src/fe-common')
-rw-r--r-- | src/fe-common/core/chat-completion.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/fe-common/core/chat-completion.c b/src/fe-common/core/chat-completion.c index ebf8b0c1..21e4aff0 100644 --- a/src/fe-common/core/chat-completion.c +++ b/src/fe-common/core/chat-completion.c @@ -1159,6 +1159,7 @@ void chat_completion_init(void) signal_add("complete command server", (SIGNAL_FUNC) sig_complete_connect); signal_add("complete command disconnect", (SIGNAL_FUNC) sig_complete_tag); signal_add("complete command reconnect", (SIGNAL_FUNC) sig_complete_tag); + signal_add("complete command window server", (SIGNAL_FUNC) sig_complete_tag); signal_add("complete command topic", (SIGNAL_FUNC) sig_complete_topic); signal_add("complete command away", (SIGNAL_FUNC) sig_complete_away); signal_add("complete command unalias", (SIGNAL_FUNC) sig_complete_unalias); @@ -1197,6 +1198,7 @@ void chat_completion_deinit(void) signal_remove("complete command server", (SIGNAL_FUNC) sig_complete_connect); signal_remove("complete command disconnect", (SIGNAL_FUNC) sig_complete_tag); signal_remove("complete command reconnect", (SIGNAL_FUNC) sig_complete_tag); + signal_remove("complete command window server", (SIGNAL_FUNC) sig_complete_tag); signal_remove("complete command topic", (SIGNAL_FUNC) sig_complete_topic); signal_remove("complete command away", (SIGNAL_FUNC) sig_complete_away); signal_remove("complete command unalias", (SIGNAL_FUNC) sig_complete_unalias); |