Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| function getRandomInt(min, max) { | |
| return min + Math.floor(Math.random() * (max - min + 1)); | |
| } |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| function renderTemplate($template, $param = false) { | |
| ob_start(); | |
| if ($param) { | |
| extract($param); | |
| } | |
| include($template); | |
| } |
| sortObject = function(o) { | |
| var sorted = {}, | |
| key, a = []; | |
| for (key in o) { | |
| if (o.hasOwnProperty(key)) { | |
| a.push(key); | |
| } | |
| } |
| if (typeof $this.outerHTML !== 'undefined') { | |
| outerhtml = $this.outerHTML; | |
| } else { | |
| outerhtml = $this.wrap('<div>').parent().html(); | |
| $this.unwrap(); | |
| } |