shithub: orca

Download patch

ref: 9ae1c0c9da4739064ef2da5cb2c95dd430e5b013
parent: d58c62639499c20e35a343c1486cade487e680cd
author: cancel <cancel@cancel.fm>
date: Fri Jan 3 22:49:13 EST 2020

Add ctrl+o to open file dialog

--- a/tui_main.c
+++ b/tui_main.c
@@ -3037,6 +3037,9 @@
     // 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);