dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

keymap.json (546B)


      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       "¥": ["workspace::SendKeystrokes", "\\"],
     20       "alt-¥": ["workspace::SendKeystrokes", "¥"],
     21     },
     22   },
     23 ]