As of 1/6/2022
- Align Tab
- All Autocomplete
- Better CoffeeScript
- BootstrapAutocomplete
- Clickable URLs
- Default File Type
| <snippet> | |
| <!-- Type `bracket` and hit tab to open a bracket with a closing comment. --> | |
| <!-- Type the class for the element you are styling and it is placed at the top and in the comment after the closing bracket --> | |
| <!-- Hit tab a second time to put your cursor into a beautifuly tabbed spot within the bracket --> | |
| <!-- https://webdevstudios.com/2016/08/16/snippets-saved-life-how-sublime-text-3-snippets-changed-everything/ --> | |
| <content><![CDATA[ | |
| .${1:example} { | |
| ${2:Type a class then hit tab!} | |
| } //.${1:example} | |
| ]]></content> |
| // ---- | |
| // Sass (v3.4.14) | |
| // Compass (v1.0.3) | |
| // Bourbon (v4.2.3) | |
| // Neat (v1.6.0) | |
| // ---- | |
| @import "bourbon/bourbon"; | |
| @import "neat/neat"; |
| { | |
| "binary_file_patterns": ["node_modules/*", "bower_components/*"] | |
| } |
| // ---- | |
| // libsass (v3.2.5) | |
| // ---- | |
| // The variable cascade! | |
| // NOTE: This example is meant to illustrate how variables cascade. | |
| // NOTE: this may seem elementary, but imagine trying to override these variables in different files in different parts of the cascade. | |
| // Example 1: Outputs white because $first-variable: 'blue'; comes after the .outputs-white class | |
| $first-variable: 'white'; |
| // ---- | |
| // Sass (v3.4.13) | |
| // Compass (v1.0.3) | |
| // ---- | |
| $doc-font-size: 16; | |
| @mixin mq($point, $IE9: false, $query1: min, $query2: width) { | |
| @if $IE9 == true{ | |
| .lt-ie9 & { | |
| @content; |
A few Sketch resources taken from Clark Wimberly's (@clarklab) talk at RWD Summit.
| // ---- | |
| // Sass (v3.4.9) | |
| // Compass (v1.0.1) | |
| // ---- | |
| // Primary | |
| $dark-orange: #d9531e; | |
| $orange: #f47b20; | |
| $orange-med: #d9531e; |
Lots of folks note how Kernel 3.17 is supposed to fix trackpad issues. So, I initially installed 3.18 and found that my sound didn't work (? YMMV). Indeed, my trackpad did work, but my sound didn't. I then reinstalled elementary via elementaryos-chromebook and didn't update the kernel. Not updating the Kernel is reccommended:
http://shnatsel.blogspot.com/2013/12/why-you-should-not-upgrade-kernel-on.html
Here's what I did to get things working:
| { | |
| "patterns": { | |
| "TODO": "TODO[\\s]*?:[\\s]*(?P<todo>.*)$", | |
| "NOTE": "NOTE[\\s]*?:[\\s]*(?P<note>.*)$" | |
| }, | |
| "patterns_weight": { | |
| "TODO": 10, | |
| "NOTE": 20 | |
| }, | |
| "exclude_folders": [ |