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 |
| <select name=""> | |
| <option value="USD" selected="selected">United States Dollars</option> | |
| <option value="EUR">Euro</option> | |
| <option value="GBP">United Kingdom Pounds</option> | |
| <option value="DZD">Algeria Dinars</option> | |
| <option value="ARP">Argentina Pesos</option> | |
| <option value="AUD">Australia Dollars</option> | |
| <option value="ATS">Austria Schillings</option> | |
| <option value="BSD">Bahamas Dollars</option> | |
| <option value="BBD">Barbados Dollars</option> |
| { | |
| "vars": { | |
| "@gray-base": "#000", | |
| "@gray-darker": "lighten(@gray-base, 13.5%)", | |
| "@gray-dark": "lighten(@gray-base, 20%)", | |
| "@gray": "lighten(@gray-base, 33.5%)", | |
| "@gray-light": "lighten(@gray-base, 46.7%)", | |
| "@gray-lighter": "lighten(@gray-base, 93.5%)", | |
| "@brand-primary": "#673AB7", | |
| "@brand-success": "#4CAF50", |
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 |
| // Ajax File upload with jQuery and XHR2 | |
| // Sean Clark http://square-bracket.com | |
| // xhr2 file upload | |
| // data is optional | |
| $.fn.upload = function(remote,data,successFn,progressFn) { | |
| // if we dont have post data, move it along | |
| if(typeof data != "object") { | |
| progressFn = successFn; | |
| successFn = data; | |
| } |
| array ( | |
| 'ALL' => 'Albania Lek', | |
| 'AFN' => 'Afghanistan Afghani', | |
| 'ARS' => 'Argentina Peso', | |
| 'AWG' => 'Aruba Guilder', | |
| 'AUD' => 'Australia Dollar', | |
| 'AZN' => 'Azerbaijan New Manat', | |
| 'BSD' => 'Bahamas Dollar', | |
| 'BBD' => 'Barbados Dollar', | |
| 'BDT' => 'Bangladeshi taka', |