Skip to content

Instantly share code, notes, and snippets.

@thedrint
Created July 1, 2019 20:12
Show Gist options
  • Save thedrint/b816ff5ee7a5b398d58bfe1da0f4e281 to your computer and use it in GitHub Desktop.
Save thedrint/b816ff5ee7a5b398d58bfe1da0f4e281 to your computer and use it in GitHub Desktop.
Sublime Text 3 keybindings
[
{ "keys": ["alt+up"], "command": "move", "args": {"by": "pages", "forward": false} },
{ "keys": ["alt+down"], "command": "move", "args": {"by": "pages", "forward": true} },
{ "keys": ["alt+left"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["alt+right"], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["ctrl+pagedown"], "command": "next_view_in_stack" },
{ "keys": ["ctrl+pageup"], "command": "prev_view_in_stack" },
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" },
{ "keys": ["alt+shift+right"], "command": "next_view" },
{ "keys": ["alt+shift+left"], "command": "prev_view" },
{ "keys": ["ctrl+alt+z"], "command": "sublime_merge_open_repo" }
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment