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 |
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 |
| /* | |
| * Author: http://stuffandnonsense.co.uk/blog/about/hardboiled_css3_media_queries/ | |
| */ | |
| /* Smartphones (portrait and landscape) ----------- */ | |
| @media only screen | |
| and (min-device-width : 320px) | |
| and (max-device-width : 480px) { | |
| /* Styles */ | |
| } |
| { | |
| "files": | |
| { | |
| "avgrundjs": "https://raw.github.com/voronianski/jquery.avgrund.js/master/js/jquery.avgrund.js", | |
| "backbone": "http://documentcloud.github.com/backbone/backbone.js", | |
| "backbone.localStorage": "https://raw.github.com/jeromegn/Backbone.localStorage/master/backbone.localStorage.js", | |
| "backbone.min": "http://documentcloud.github.com/backbone/backbone-min.js", | |
| "d3js": "http://d3js.org/d3.v3.min.js", | |
| "raphaeljs": "http://github.com/DmitryBaranovskiy/raphael/raw/master/raphael-min.js", | |
| "history": "https://raw.github.com/balupton/history.js/master/scripts/compressed/history.js", |
| function checkParent() { | |
| var container:DisplayObjectContainer = this; | |
| var level:uint = 0; | |
| while ( container.parent != null ) { | |
| container = container.parent; | |
| trace( 'parent in level'+ level +' : ' + container ); | |
| level++; | |
| } |
| var CONSOLEFIXER = (function() { | |
| if (!window.console) { | |
| window.console = {}; | |
| } | |
| // union of Chrome, FF, IE, and Safari console methods | |
| var m = [ | |
| "log", "info", "warn", "error", "debug", "trace", "dir", "group", | |
| "groupCollapsed", "groupEnd", "time", "timeEnd", "profile", "profileEnd", | |
| "dirxml", "assert", "count", "markTimeline", "timeStamp", "clear" | |
| ]; |
| ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/sublime |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |