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 |
/** | |
* This function takes milliseconds as input and converts it into "D H M S ms" format. | |
* | |
* @author Shubham Jain <[email protected]> | |
* @license MIT License | |
*/ | |
function timeFormat( miliseconds ) | |
{ | |
formatArr = { | |
"d": 24 * 60 * 60 * 1000, |
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 |
<?php | |
/** | |
* A simple class to read variable byte length binary data. | |
* This is basically is a better replacement for unpack() function | |
* which creates a very large associative array. | |
* | |
* @author Shubham Jain <[email protected]> | |
* @example https://github.com/shubhamjain/PHP-ID3 | |
* @license MIT License |