1
0

Default (OSX).sublime-keymap 1.0 KB

12345678910111213141516171819202122232425
  1. [
  2. { "keys": ["ctrl+tab"], "command": "next_view" },
  3. { "keys": ["ctrl+shift+tab"], "command": "prev_view" },
  4. { "keys": ["super+v"], "command": "paste_and_indent" },
  5. { "keys": ["super+shift+v"], "command": "paste" },
  6. { "keys": ["super+option+down"], "command": "git_gutter_next_change" },
  7. { "keys": ["super+option+up"], "command": "git_gutter_prev_change" },
  8. { "keys": ["enter"], "command": "commit_completion", "context":
  9. [
  10. { "key": "auto_complete_visible" }
  11. ]
  12. },
  13. { "keys": ["super+k", "super+shift+z"], "command": "zoom_pane", "args": {"fraction": 0.9} },
  14. { "keys": ["super+k", "super+z"], "command": "toggle_zoom_pane", "args": {"fraction": 0.8} },
  15. { "keys": ["super+b"], "command": "toggle_side_bar" },
  16. {
  17. "keys": ["ctrl+shift+s"], "command": "toggle_color_scheme",
  18. "args": {
  19. "light_color_scheme": "Packages/ayu/ayu-light.tmTheme",
  20. "dark_color_scheme": "Packages/ayu/ayu-dark.tmTheme",
  21. "light_theme": "ayu-light.sublime-theme",
  22. "dark_theme": "ayu-dark.sublime-theme"
  23. }
  24. }
  25. ]