aboutsummaryrefslogtreecommitdiff
path: root/src/frontend/handler.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/handler.rs')
-rw-r--r--src/frontend/handler.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/frontend/handler.rs b/src/frontend/handler.rs
index a718a87..5bb52d5 100644
--- a/src/frontend/handler.rs
+++ b/src/frontend/handler.rs
@@ -99,6 +99,9 @@ pub fn handle_key_events(key_event: KeyEvent, app: &mut App, tui: &mut Tui) -> R
KeyCode::Char('e') => {
app.run_editor(tui)?;
}
+ KeyCode::Char('o') => {
+ app.open_connected_file()?;
+ }
KeyCode::Char('/') => {
app.enter_search_area();
}