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