Use these rapid keyboard shortcuts to control the GitHub Atom text editor on macOS.
- ⌘ : Command key
- ⌃ : Control key
- ⌫ : Delete key
- ← : Left arrow key
- → : Right arrow key
- ↑ : Up arrow key
| /** | |
| * Created by caspar on 20/05/16. | |
| */ | |
| public without sharing class Utilities { | |
| public static Map<String, List<String>> fieldsForType = new Map<String, List<String>>(); | |
| /** | |
| * Retrieves a list of sObjects |
Use these rapid keyboard shortcuts to control the GitHub Atom text editor on macOS.
| function hash(str) { | |
| var len = str.length; | |
| var hash = 5381; | |
| for (var idx = 0; idx < len; ++idx) { | |
| hash = 33 * hash + str.charCodeAt(idx); | |
| } | |
| return hash; | |
| } |