Created
February 8, 2015 17:31
-
-
Save feifanzhou/d0594f9695b42ac59cc9 to your computer and use it in GitHub Desktop.
Sublime 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
Show hidden characters
[ | |
{ "keys": ["ctrl+tab"], "command": "next_view" }, // Make Ctrl+tab work the way you expect it to | |
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" }, | |
{ "keys": ["super+shift+g"], "command": "goto_definition" }, | |
{ "keys": ["super+v"], "command": "paste_and_indent" }, // Make Paste-and-indent the default | |
{ "keys": ["super+shift+v"], "command": "paste" }, | |
{ "keys": ["ctrl+x","o"], "command": "focus_neighboring_group" } // Copied from emacs | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment