From efbb90dd600ebd733bd7475750699bb1b098879b Mon Sep 17 00:00:00 2001 From: Gregory Schier Date: Wed, 29 Oct 2025 14:59:13 -0700 Subject: [PATCH] Prevent vim hotkeys from activating tree in sidebar filter --- src-web/components/Sidebar.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src-web/components/Sidebar.tsx b/src-web/components/Sidebar.tsx index 13b70010..f3c12a44 100644 --- a/src-web/components/Sidebar.tsx +++ b/src-web/components/Sidebar.tsx @@ -173,6 +173,7 @@ function Sidebar({ className }: { className?: string }) { const handleFilterKeyDown = useCallback( (e: KeyboardEvent) => { + e.stopPropagation(); // Don't trigger tree navigation hotkeys if (e.key === 'Escape') { e.preventDefault(); clearFilterText();