zed

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

keymap.json (617B)


      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     },
     14   },
     15   {
     16     "context": "Editor && vim_mode == insert",
     17     "bindings": {
     18       // "j k": "vim::NormalBefore"
     19     },
     20   },
     21   {
     22     "context": "Editor && (vim_mode == helix_normal || vim_mode == helix_visual)",
     23     "bindings": {
     24       "p": "editor::Paste",
     25       "P": "editor::Paste",
     26     },
     27   },
     28 ]