Browse Source

Add ctrl+o to open file dialog

master
cancel 5 years ago
parent
commit
9ae1c0c9da
  1. 3
      tui_main.c

3
tui_main.c

@ -3037,6 +3037,9 @@ int main(int argc, char** argv) {
// in the menus or *not* in bracketed paste mode.
case CTRL_PLUS('q'):
goto quit;
case CTRL_PLUS('o'):
push_open_form(file_name.str);
break;
case KEY_UP:
case CTRL_PLUS('k'):
ged_dir_input(&ged_state, Ged_dir_up, 1);

Loading…
Cancel
Save