Browse Source

Add delete to replace with '.'

master
cancel 6 years ago
parent
commit
883e063f8b
  1. 4
      tui_main.c

4
tui_main.c

@ -1777,6 +1777,10 @@ int main(int argc, char** argv) {
app_modify_selection_size(&app_state, 0, 1); app_modify_selection_size(&app_state, 0, 1);
break; break;
case 330: // delete?
app_input_character(&app_state, '.');
break;
case KEY_F(1): case KEY_F(1):
app_state.grid_scroll_x -= 1; app_state.grid_scroll_x -= 1;
app_state.is_draw_dirty = true; app_state.is_draw_dirty = true;

Loading…
Cancel
Save