From 89951f7e668a6f2a2954bbd776aaa2e62aea5833 Mon Sep 17 00:00:00 2001 From: "Joseph T. Lyons" Date: Wed, 26 Jun 2024 16:44:40 -0400 Subject: [PATCH] Add `shift shift` to open command palette (#13556) I've add `shift shift` as a default keybinding to open command palette, when using JetBrains keymap, along with the already existing `cmd-shift-a`. This isn't quite right, as in JetBrains, `cmd-shift-a` opens the actions modal, which would be our command palette, and `shift shift` actually opens up a view for searching everything, commands, actions, settings, etc - we do not have a unified modal for these things, so I think this is the best thing we can do. Some users might want to change this to be our file picker, but I think adding it as the default at least puts it on their radar that they can use this type of binding; they can change it if they want. Release Notes: - Added `shift shift` as a default binding to open the command palette in the JetBrains keymap. --- assets/keymaps/jetbrains.json | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/keymaps/jetbrains.json b/assets/keymaps/jetbrains.json index ce37629b975b63eb51ceafadcca38461cfb5ef88..bd9b881ad082bcfbad31389d67bc7ddbc1e52d6c 100644 --- a/assets/keymaps/jetbrains.json +++ b/assets/keymaps/jetbrains.json @@ -78,6 +78,7 @@ "bindings": { "cmd-shift-o": "file_finder::Toggle", "cmd-shift-a": "command_palette::Toggle", + "shift shift": "command_palette::Toggle", "cmd-alt-o": "project_symbols::Toggle", "cmd-1": "workspace::ToggleLeftDock", "cmd-6": "diagnostics::Deploy"