From 24fe627a255a07eefb2c17285ee7d573e97fc479 Mon Sep 17 00:00:00 2001 From: Emanuele Giaquinta Date: Thu, 15 May 2008 17:17:53 +0000 Subject: [PATCH] Complete server tags for /window server. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4827 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-common/core/chat-completion.c | 2 ++ 1 file changed, 2 insertions(+) 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);