Default (Linux).sublime-keymap 824 B

12345678910111213
  1. [
  2. { "keys": ["ctrl+tab"], "command": "next_view" },
  3. { "keys": ["ctrl+shift+tab"], "command": "prev_view" },
  4. // tmux hotkeys for origami
  5. { "keys": ["ctrl+b", "\""], "command": "create_pane", "args": {"direction": "down", "give_focus": true} },
  6. { "keys": ["ctrl+b", "%"], "command": "create_pane", "args": {"direction": "right", "give_focus": true} },
  7. { "keys": ["ctrl+b", "x"], "command": "destroy_pane", "args": {"direction": "self"} },
  8. { "keys": ["ctrl+b", "up"], "command": "travel_to_pane", "args": {"direction": "up"} },
  9. { "keys": ["ctrl+b", "right"], "command": "travel_to_pane", "args": {"direction": "right"} },
  10. { "keys": ["ctrl+b", "down"], "command": "travel_to_pane", "args": {"direction": "down"} },
  11. { "keys": ["ctrl+b", "left"], "command": "travel_to_pane", "args": {"direction": "left"} }
  12. ]