| 1060 |
output_end_row = SCREEN_ROWS - 1; // Legacy Fterm only works with this line |
output_end_row = SCREEN_ROWS - 1; // Legacy Fterm only works with this line |
| 1061 |
col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_widths[line_current - output_current_row + row_pos])); |
col_pos = MIN(col_pos, MAX(1, p_editor_data->display_line_widths[line_current - output_current_row + row_pos])); |
| 1062 |
break; |
break; |
|
case KEY_SPACE: |
|
|
break; |
|
| 1063 |
case KEY_RIGHT: |
case KEY_RIGHT: |
| 1064 |
offset_in = split_line(p_editor_data->p_display_lines[line_current - output_current_row + row_pos], |
offset_in = split_line(p_editor_data->p_display_lines[line_current - output_current_row + row_pos], |
| 1065 |
(int)col_pos - 1, &eol, &display_len, 0); |
(int)col_pos - 1, &eol, &display_len, 0); |
| 1131 |
break; |
break; |
| 1132 |
case Ctrl('Q'): |
case Ctrl('Q'): |
| 1133 |
case KEY_F1: |
case KEY_F1: |
| 1134 |
if (!show_help) // Not reentrant |
if (!show_help) // Not re-entrant |
| 1135 |
{ |
{ |
| 1136 |
break; |
break; |
| 1137 |
} |
} |
| 1138 |
// Display help information |
// Display help information |
| 1139 |
show_help = 0; |
show_help = 0; |
| 1140 |
display_file(DATA_READ_HELP, 1); |
display_file(DATA_EDITOR_HELP, 1); |
| 1141 |
show_help = 1; |
show_help = 1; |
| 1142 |
case KEY_F5: |
case KEY_F5: |
| 1143 |
// Refresh after display help information |
// Refresh after display help information |