| | 1144 | | key_bind("refresh_screen", "Redraw screen", "^L", NULL, (SIGNAL_FUNC) );
| | | 1145 | | key_bind("scroll_backward", "Scroll to previous page", "prior", NULL, (SIGNAL_FUNC) key_scroll_backward);
| | | 1146 | | key_bind("scroll_backward", NULL, "meta-p", NULL, (SIGNAL_FUNC) key_scroll_backward);
| | | 1147 | | key_bind("scroll_forward", "Scroll to next page", "next", NULL, (SIGNAL_FUNC) key_scroll_forward);
| | | 1148 | | key_bind("scroll_forward", NULL, "meta-n", NULL, (SIGNAL_FUNC) key_scroll_forward);
| | | 1149 | | key_bind("scroll_start", "Scroll to the beginning of the window", "chome", NULL, (SIGNAL_FUNC) key_scroll_start);
| | | 1150 | | key_bind("scroll_end", "Scroll to the end of the window", "cend", NULL, (SIGNAL_FUNC) key_scroll_end);
| | | 1151 | | | | | 1152 | | | | | 1153 | | key_bind("escape_char", "Insert the next character exactly as-is to input line", NULL, NULL, (SIGNAL_FUNC) key_escape);
| | Wrong Number of Parameters | 1154 | | key_bind("insert_text", "Append text to line", NULL, NULL, (SIGNAL_FUNC) key_insert_text);
| | | 1155 | | | | | 1156 | | | | | 1157 | | key_bind("multi", NULL, "return", "check_replaces;send_line", NULL);
| | | 1158 | | key_bind("multi", NULL, "space", "check_replaces;insert_text ", NULL);
| | | 1159 | | | | | 1160 | | | | | 1161 | | for (n = 0; changekeys[n] != '\0'; n++) { | | | 1162 | | key = g_strdup_printf("meta-%c", changekeys[n]); | | | 1163 | | ltoa(data, n+1);
| | | 1164 | | key_bind("change_window", "Change window", key, data, (SIGNAL_FUNC) key_change_window); |
|