From b13b949e8ddfb35b2c903adecd4814147bac95d0 Mon Sep 17 00:00:00 2001 From: Mattias Eriksson Date: Mon, 5 Feb 2024 11:28:41 +0100 Subject: [PATCH] Ensure terminal is focused after paste --- src/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.rs b/src/main.rs index ee03b61..c814f8c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1139,6 +1139,7 @@ impl Application for App { terminal.paste(value); } } + return self.update_focus(); } Message::SelectAll(entity_opt) => { if let Some(tab_model) = self.pane_model.active() {