| | 1084 | | | | | 1085 | | key_bind("key", NULL, "meta2-4;5~", "cend", (SIGNAL_FUNC) key_combo);
| | | 1086 | | key_bind("key", NULL, "meta2-8;5~", "cend", (SIGNAL_FUNC) key_combo);
| | | 1087 | | key_bind("key", NULL, "meta2-5F", "cend", (SIGNAL_FUNC) key_combo);
| | | 1088 | | key_bind("key", NULL, "meta2-1;5F", "cend", (SIGNAL_FUNC) key_combo);
| | | 1089 | | | | | 1090 | | | | | 1091 | | key_bind("backward_character", "Move the cursor a character backward", "left", NULL, (SIGNAL_FUNC) key_backward_character);
| | | 1092 | | key_bind("forward_character", "Move the cursor a character forward", "right", NULL, (SIGNAL_FUNC) key_forward_character);
| | | 1093 | | key_bind("backward_word", "Move the cursor a word backward", "cleft", NULL, (SIGNAL_FUNC) key_backward_word);
| | Wrong Number of Parameters | 1094 | | key_bind("backward_word", NULL, "meta-b", NULL, (SIGNAL_FUNC) key_backward_word);
| | | 1095 | | key_bind("forward_word", "Move the cursor a word forward", "cright", NULL, (SIGNAL_FUNC) key_forward_word);
| | | 1096 | | key_bind("forward_word", NULL, "meta-f", NULL, (SIGNAL_FUNC) key_forward_word);
| | | 1097 | | key_bind("backward_to_space", "Move the cursor backward to a space", NULL, NULL, (SIGNAL_FUNC) key_backward_to_space);
| | | 1098 | | key_bind("forward_to_space", "Move the cursor forward to a space", NULL, NULL, (SIGNAL_FUNC) key_forward_to_space);
| | | 1099 | | key_bind("beginning_of_line", "Move the cursor to the beginning of the line", "home", NULL, (SIGNAL_FUNC) key_beginning_of_line);
| | | 1100 | | key_bind("beginning_of_line", NULL, "^A", NULL, (SIGNAL_FUNC) key_beginning_of_line);
| | | 1101 | | key_bind("end_of_line", "Move the cursor to the end of the line", "end", NULL, (SIGNAL_FUNC) key_end_of_line);
| | | 1102 | | key_bind("end_of_line", NULL, "^E", NULL, (SIGNAL_FUNC) key_end_of_line);
| | | 1103 | | | | | 1104 | | |
|