aboutsummaryrefslogtreecommitdiff
path: root/dot_config/zed/kakoune-keymap.json
blob: c874e7b4e25a7de49233ad2e933c60075dd02e43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[
  {
    "context": "Editor && vim_mode == normal",
    "bindings": {
      "g l": "vim::EndOfLine",
      "g h": "vim::StartOfLine",
      "x": "editor::SelectLine",
      "w": "editor::SelectToNextWordEnd"
    }
  },
  {
    "context": "Editor && vim_mode == select",
    "bindings": {
      "y": "editor::Copy",
      "d": "editor::Cut",
      "R": "editor::Paste"
    }
  }
]