language-spacebars package
Adds syntax highlighting and snippets to Spacebars files in Atom. Can also be used for Handlebars.
Feedback
Feel free to submit issues or pull requests with suggestions for more.
Generic Snippets
if
if: {{#if condition}}
{{/if}}
ife
if - else: {{#if condition}}
{{else}}
{{/if}}
un
unless: {{#unless condition}}
{{/unless}}
une
unless - else: {{#unless condition}}
{{else}}
{{/unless}}
wt
with: {{#with item}}
{{/with}}
wte
with - else: {{#with item}}
{{else}}
{{/with}}
ea
each: {{#each items}}
{{/each}}
eae
each - else: {{#each items}}
{{else}}
{{/each}}
let
let: {{#let variables}}
{{/let}}
pa
partial: {{> template }}