mirror of
https://github.com/irssi/irssi.git
synced 2026-08-09 20:00:23 +02:00
Added completion for /LOAD and /WINDOW ITEM MOVE.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2749 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
f376e558f7
commit
70d377b865
2 changed files with 15 additions and 0 deletions
|
|
@ -745,6 +745,7 @@ void completion_init(void)
|
|||
signal_add_first("complete erase", (SIGNAL_FUNC) sig_complete_erase);
|
||||
signal_add("complete command set", (SIGNAL_FUNC) sig_complete_set);
|
||||
signal_add("complete command toggle", (SIGNAL_FUNC) sig_complete_toggle);
|
||||
signal_add("complete command load", (SIGNAL_FUNC) sig_complete_filename);
|
||||
signal_add("complete command cat", (SIGNAL_FUNC) sig_complete_filename);
|
||||
signal_add("complete command save", (SIGNAL_FUNC) sig_complete_filename);
|
||||
signal_add("complete command reload", (SIGNAL_FUNC) sig_complete_filename);
|
||||
|
|
@ -763,6 +764,7 @@ void completion_deinit(void)
|
|||
signal_remove("complete erase", (SIGNAL_FUNC) sig_complete_erase);
|
||||
signal_remove("complete command set", (SIGNAL_FUNC) sig_complete_set);
|
||||
signal_remove("complete command toggle", (SIGNAL_FUNC) sig_complete_toggle);
|
||||
signal_remove("complete command load", (SIGNAL_FUNC) sig_complete_filename);
|
||||
signal_remove("complete command cat", (SIGNAL_FUNC) sig_complete_filename);
|
||||
signal_remove("complete command save", (SIGNAL_FUNC) sig_complete_filename);
|
||||
signal_remove("complete command reload", (SIGNAL_FUNC) sig_complete_filename);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue