Skip to content

Instantly share code, notes, and snippets.

@lkpttn
lkpttn / gist:3395443
Created August 19, 2012 15:16 — forked from lucasfais/gist:1207002
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt
@lkpttn
lkpttn / labels.scss
Created July 13, 2012 20:36 — forked from orderedlist/labels.scss
Simple Label Colors with SCSS
$red:#f36d54;
$number: 100;
@for $i from 1 through $number {
.label-#{$i} {
color:adjust_hue($red, ($i - 1) * (360 / $number));
}
}