Created
July 1, 2019 20:12
-
-
Save thedrint/b816ff5ee7a5b398d58bfe1da0f4e281 to your computer and use it in GitHub Desktop.
Sublime Text 3 keybindings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "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