[
  { "keys": ["ctrl+p"],       "command": "scope_to_clipboard"  },
  { "keys": ["ctrl+ф"],       "command": "select_all" },
  { "keys": ["ctrl+ч"],       "command": "cut" },
  { "keys": ["ctrl+с"],       "command": "copy" },
  { "keys": ["ctrl+shift+i"], "command": "noop" },
  { "keys": ["ctrl+м"],       "command": "paste" },
  { "keys": ["ctrl+в"],       "command": "save" },
  { "keys": ["ctrl+ы"],       "command": "save" },
  { "keys": ["ctrl+r"],       "command": "save" },
  { "keys": ["ctrl+t"],       "command": "save" },
  { "keys": ["ctrl+а"],       "command": "save" },
  { "keys": ["ctrl+z"],       "command": "undo" },
  { "keys": ["ctrl+я"],       "command": "undo" },
  { "keys": ["ctrl+у"],       "command": "show_panel", "args": {"panel": "find"} },
  { "keys": ["ctrl+n"],    "command": "noop" },
  { "keys": ["ctrl+home"],    "command": "noop" },
  { "keys": ["ctrl+end"],     "command": "noop" },
  { "keys": ["ctrl+pageup"],     "command": "noop" },
  { "keys": ["ctrl+pagedown"],     "command": "noop" },
  { "keys": ["ctrl+."], "command": "toggle_comment", "args": { "block": false } },
  { "keys": ["ctrl+shift+up"], "command": "move", "args": {"by": "lines", "forward": false, "extend": true} },
  { "keys": ["ctrl+shift+down"], "command": "move", "args": {"by": "lines", "forward": true, "extend": true} },
  { "keys": ["ctrl+shift+home"], "command": "move_to", "args": {"to": "bol", "extend": true} },
  { "keys": ["ctrl+shift+end"], "command": "move_to", "args": {"to": "eol", "extend": true} },
  { "keys": ["ctrl+up"], "command": "move", "args": { "by": "lines", "forward": false, "amount": 1 } },
  { "keys": ["ctrl+down"], "command": "move", "args": { "by": "lines", "forward": true, "amount": 1 } },
]
[ ]