mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
/ACTION supports -servertag now and tab completion works with it like with
/MSG. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2484 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
6f136674e9
commit
1dc3dafe0d
2 changed files with 13 additions and 3 deletions
|
|
@ -914,8 +914,10 @@ void chat_completion_init(void)
|
|||
signal_add("complete word", (SIGNAL_FUNC) sig_complete_word);
|
||||
signal_add("complete command msg", (SIGNAL_FUNC) sig_complete_msg);
|
||||
signal_add("complete command query", (SIGNAL_FUNC) sig_complete_msg);
|
||||
signal_add("complete command action", (SIGNAL_FUNC) sig_complete_msg);
|
||||
signal_add("complete erase command msg", (SIGNAL_FUNC) sig_erase_complete_msg);
|
||||
signal_add("complete erase command query", (SIGNAL_FUNC) sig_erase_complete_msg);
|
||||
signal_add("complete erase command action", (SIGNAL_FUNC) sig_erase_complete_msg);
|
||||
signal_add("complete command connect", (SIGNAL_FUNC) sig_complete_connect);
|
||||
signal_add("complete command server", (SIGNAL_FUNC) sig_complete_connect);
|
||||
signal_add("complete command topic", (SIGNAL_FUNC) sig_complete_topic);
|
||||
|
|
@ -940,8 +942,10 @@ void chat_completion_deinit(void)
|
|||
signal_remove("complete word", (SIGNAL_FUNC) sig_complete_word);
|
||||
signal_remove("complete command msg", (SIGNAL_FUNC) sig_complete_msg);
|
||||
signal_remove("complete command query", (SIGNAL_FUNC) sig_complete_msg);
|
||||
signal_remove("complete command action", (SIGNAL_FUNC) sig_complete_msg);
|
||||
signal_remove("complete erase command msg", (SIGNAL_FUNC) sig_erase_complete_msg);
|
||||
signal_remove("complete erase command query", (SIGNAL_FUNC) sig_erase_complete_msg);
|
||||
signal_remove("complete erase command action", (SIGNAL_FUNC) sig_erase_complete_msg);
|
||||
signal_remove("complete command connect", (SIGNAL_FUNC) sig_complete_connect);
|
||||
signal_remove("complete command server", (SIGNAL_FUNC) sig_complete_connect);
|
||||
signal_remove("complete command topic", (SIGNAL_FUNC) sig_complete_topic);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue