my nix setup
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 29 lines 795 B view raw
1// Zed keymap 2// 3// For information on binding keys, see the Zed 4// documentation: https://zed.dev/docs/key-bindings 5// 6// To see the default key bindings run `zed: open default keymap` 7// from the command palette. 8[ 9 { 10 "context": "Workspace", 11 "bindings": { 12 "shift shift": "file_finder::Toggle", 13 "cmd-1": "project_panel::ToggleFocus", 14 "cmd-2": "git_panel::ToggleFocus", 15 "cmd-3": "outline_panel::ToggleFocus", 16 "cmd-4": "collab_panel::ToggleFocus" 17 } 18 }, 19 { 20 "context": "Editor && vim_mode == insert", 21 "bindings": { 22 "shift shift": "file_finder::Toggle", 23 "cmd-1": "project_panel::ToggleFocus", 24 "cmd-2": "git_panel::ToggleFocus", 25 "cmd-3": "outline_panel::ToggleFocus", 26 "cmd-4": "collab_panel::ToggleFocus" 27 } 28 } 29]