From 839465a4dd8aa52b30e3d4a03476c8c78654b626 Mon Sep 17 00:00:00 2001 From: Jonatan Pettersson Date: Wed, 3 Dec 2025 21:24:02 +0100 Subject: [PATCH] fix: Only type to search in App mode --- src/app.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index cd4d005..98abd27 100644 --- a/src/app.rs +++ b/src/app.rs @@ -2984,7 +2984,8 @@ impl Application for App { } // Uncaptured keys with only shift modifiers go to the search or location box - if !modifiers.logo() + if matches!(self.mode, Mode::App) + && !modifiers.logo() && !modifiers.control() && !modifiers.alt() && matches!(key, Key::Character(_))