Created
July 24, 2013 08:56
-
-
Save chriskk/6069009 to your computer and use it in GitHub Desktop.
Sublime Text 2 - key bindings for Apple keyboard's Command key
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": ["super+n"], "command": "new_file" }, | |
{ "keys": ["super+c"], "command": "copy" }, | |
{ "keys": ["super+x"], "command": "cut" }, | |
{ "keys": ["super+v"], "command": "paste" }, | |
{ "keys": ["super+z"], "command": "undo" }, | |
{ "keys": ["super+y"], "command": "redo" }, | |
{ "keys": ["super+shift+z"], "command": "redo" }, | |
{ "keys": ["super+s"], "command": "save" }, | |
{ "keys": ["super+left"], "command": "move_to", "args": { "to": "bol" } }, | |
{ "keys": ["super+right"], "command": "move_to", "args": { "to": "eol" } }, | |
{ "keys": ["super+a"], "command": "select_all" } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment