Skip to content

Instantly share code, notes, and snippets.

@raulghm
Created November 24, 2014 13:54
Show Gist options
  • Save raulghm/abf460cdbe2c4ce3013d to your computer and use it in GitHub Desktop.
Save raulghm/abf460cdbe2c4ce3013d to your computer and use it in GitHub Desktop.
BEM Snippet [Sublime Text]
<snippet>
<content><![CDATA[
\$module: 'block';
.#{\$module} {
&__element {}
&--modifier {
.#{\$module}__element {}
}
}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>bem</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.scss</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment