1#$EPIC: keybinds,v 1.2 2002/08/12 16:59:49 jnelson Exp $
2/*
3 * KEY BINDINGS, 1993
4 */
5
6/********************* Key Bindings *********************************/
7# the cursor keys
8bind ^[. end_of_line
9bind ^[, beginning_of_line
10
11# these are set automatically, but this is just in case.
12bind ^? backspace
13bind ^h backward_character
14bind ^b bold
15bind ^c switch_channels
16bind ^[i toggle_insert_mode
17bind ^w next_window
18
19# erasing bindings
20bind ^U erase_line
21bind ^d^w delete_next_word
22bind ^d^p delete_previous_word
23bind ^d^e erase_to_end_of_line
24bind ^d^a erase_line
25bind ^d^y yank_from_cutbuffer
26bind ^d^d erase_line
27
28# nice stuff to have
29bind ^d^j parse_command flush
30bind ^[c clear_screen
31bind ^[r refresh_screen
32
33bind ^[l parse_command leave *
34bind ^[i parse_command join -invite
35
36# vt100-type keys
37bind ^[[1~ beginning_of_line
38bind ^[[2~ toggle_insert_mode
39bind ^[[3~ delete_character
40bind ^[[4~ end_of_line
41bind ^[[5~ scroll_backward
42bind ^[[6~ scroll_forward
43
44