- EditorConfig # support for project .editorconfig files
- Emmet # css / html shortcuts
- GitGutter # show git status in gutter
- Handlebars # handlebars support
- SidebarEnhancements # sane sidebar controls
- StringEncode # string encoding tools
- SublimeLinter # linting...
- annotations
- csslint
- [contrib-eslint]
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ git rebase -i HEAD~4 | |
pick 01d1124 Adding license | |
pick 6340aaa Moving license into its own file | |
pick ebfd367 Jekyll has become self-aware. | |
pick 30e0ccb Changed the tagline in the binary, too. | |
# Rebase 60709da..30e0ccb onto 60709da | |
# | |
# Commands: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
serializeData: function() { | |
// call the original | |
var data = Marionette.View.prototype.serializeData.apply(this, arguments); | |
// add new data | |
data.whatever = myChannel.request('whatever'); | |
return data; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Credit to: http://www.fngtps.com/2010/mobile-safari-image-resource-limit-workaround/ | |
var img = document.getElementById('previous'); | |
img.parentNode.removeChild(img); | |
img.src = 'data:image/gif;base64,' + | |
'R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs='; | |
window.timeout(function() { | |
img = null; | |
}, 60000); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"user": { | |
"debug": false, | |
"delay": 0.25, | |
"error_color": "D02000", | |
"gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme", | |
"gutter_theme_excludes": [], | |
"lint_mode": "background", | |
"linters": { | |
"annotations": { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config --global alias.search 'log -S' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-deploy/*/**, -node_modules/*/**, -source/vendor/*/**, -dist/*/**, -flash/*/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://editorconfig.org | |
root = true | |
[*] | |
indent_style = tab | |
indent_size = 4 | |
end_of_line = lf | |
charset = utf-8 | |
trim_trailing_whitespace = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
open -a Google\ Chrome --args --disable-web-security |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Vendor mix-in for box-sizing | |
// assumes use of vendor interpolation | |
// http://learnboost.github.com/stylus/docs/interpolation.html | |
box-sizing() | |
vendor('box-sizing', arguments) | |
// apply a natural box layout model to all elements | |
* |
NewerOlder