mirror of
https://github.com/irssi/irssi.git
synced 2024-10-27 05:20:20 -04:00
Added ^I = "tab" key.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2490 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
55561eb2c9
commit
37f8547dc4
@ -580,6 +580,7 @@ void gui_readline_init(void)
|
||||
key_bind("key", NULL, "^J", "return", (SIGNAL_FUNC) key_combo);
|
||||
key_bind("key", NULL, "^H", "backspace", (SIGNAL_FUNC) key_combo);
|
||||
key_bind("key", NULL, "^?", "backspace", (SIGNAL_FUNC) key_combo);
|
||||
key_bind("key", NULL, "^I", "tab", (SIGNAL_FUNC) key_combo);
|
||||
|
||||
/* meta */
|
||||
key_bind("key", NULL, "^[", "meta", (SIGNAL_FUNC) key_combo);
|
||||
@ -648,7 +649,7 @@ void gui_readline_init(void)
|
||||
|
||||
/* line transmitting */
|
||||
key_bind("send_line", "Execute the input line", "return", NULL, (SIGNAL_FUNC) key_send_line);
|
||||
key_bind("word_completion", "", "^I", NULL, (SIGNAL_FUNC) key_word_completion);
|
||||
key_bind("word_completion", "", "tab", NULL, (SIGNAL_FUNC) key_word_completion);
|
||||
key_bind("erase_completion", "", "meta-k", NULL, (SIGNAL_FUNC) key_erase_completion);
|
||||
key_bind("check_replaces", "Check word replaces", NULL, NULL, (SIGNAL_FUNC) key_check_replaces);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user