From 8718019b52da76ed33c307aa71673ce5c1a5ef7e Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Mon, 23 Jun 2025 09:19:14 -0300 Subject: [PATCH] file finder: Ensure filter options keybinding is displayed (#33244) Follow up to https://github.com/zed-industries/zed/pull/31777. I could've sworn the filter options keybinding was being displayed in the icon button tooltip, but just realized it actually wasn't. So, this PR fixes that! Release Notes: - N/A --- assets/keymaps/default-linux.json | 2 +- assets/keymaps/default-macos.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/keymaps/default-linux.json b/assets/keymaps/default-linux.json index 7feaa5b477..1a9108f108 100644 --- a/assets/keymaps/default-linux.json +++ b/assets/keymaps/default-linux.json @@ -945,7 +945,7 @@ } }, { - "context": "FileFinder", + "context": "FileFinder || (FileFinder > Picker > Editor)", "bindings": { "ctrl-shift-a": "file_finder::ToggleSplitMenu", "ctrl-shift-i": "file_finder::ToggleFilterMenu" diff --git a/assets/keymaps/default-macos.json b/assets/keymaps/default-macos.json index 08cfe751de..42bba24d6d 100644 --- a/assets/keymaps/default-macos.json +++ b/assets/keymaps/default-macos.json @@ -1011,7 +1011,7 @@ } }, { - "context": "FileFinder", + "context": "FileFinder || (FileFinder > Picker > Editor)", "use_key_equivalents": true, "bindings": { "cmd-shift-a": "file_finder::ToggleSplitMenu",