Skip to content

Instantly share code, notes, and snippets.

@manikrathee
Created February 9, 2016 18:53
Show Gist options
  • Save manikrathee/d360ad5e643e67afd70a to your computer and use it in GitHub Desktop.
Save manikrathee/d360ad5e643e67afd70a to your computer and use it in GitHub Desktop.
A list of keyboard shortcuts for Sketch.app

For more info about the code for each special key (command, option, etc) access: http://osxnotes.net/keybindings.html

  • Command ⌘
  • Shift ⇧
  • Option ⌥
  • Control ⌃
Menu Action name Keyboard Shortcut
Top
Bottom
Left
Right
Vertically [
Horizontally ]
Flatten Selection to Bitmap O
Round to Nearest Pixel Edge R
Collapse Artboards and Groups C
Mask with Selected Shape M

Paste this in your Terminal

defaults write -app Sketch NSUserKeyEquivalents '{
  "Top"    = "^@\Uf700";
  "Bottom" = "^@\Uf701";
  "Left"   = "^@\Uf702";
  "Right"  = "^@\Uf703";
  "Vertically"   = "^@[";
  "Horizontally" = "^@]";
  "Flatten Selection to Bitmap"   = "~@o";
  "Round to Nearest Pixel Edge"   = "^@r";
  "Collapse Artboards and Groups" = "^@c";
  "Mask with Selected Shape"      = "^$@m";
}'

Thanks to: user495470

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment