H : Go back in history
L : Go forward in history
| [ | |
| /* remap escape to jj | |
| https://scotch.io/tutorials/how-to-remap-escape-in-sublime-text-3s-vintage-mode | |
| */ | |
| { "keys": ["j", "j"], "command": "exit_insert_mode", | |
| "context": [ | |
| { "key": "setting.command_mode", "operand": false }, | |
| { "key": "setting.is_widget", "operand": false }, | |
| { "key": "setting.vintage_ctrl_keys" } | |
| ] |
| { | |
| "caret_extra_width": 0, | |
| "caret_style": "smooth", | |
| "font_size": 12.0, | |
| "ignored_packages": [], // i.e. don't ignore Vintage | |
| "rulers": | |
| [ | |
| 72, | |
| 80, | |
| 120 |
| // Exercise: Output all the users under age 40 near 10 miles to GPS Location (38,-121) | |
| // Setup: | |
| // $ brew install node --with-npm; brew install npm; npm install parse | |
| // Substitute Parse API and Javascript keys below. | |
| // Run: | |
| // $ node script.js | |
| var API_KEY = "" | |
| var JAVASCRIPT_KEY = "" | |
| var Parse = require('parse').Parse; |