Skip to content

Instantly share code, notes, and snippets.

@chriskk
Created July 24, 2013 08:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chriskk/6069009 to your computer and use it in GitHub Desktop.
Save chriskk/6069009 to your computer and use it in GitHub Desktop.
Sublime Text 2 - key bindings for Apple keyboard's Command key
[
{ "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