- Cmd + Shift + P
- Select "Application: Open Your Snippets"
- Copy and paste the snippets into snippets.cson
- Save and close snippets.cson
Last active
September 12, 2015 21:14
-
-
Save barnes7td/1ec7a20bfeec2bf9bde1 to your computer and use it in GitHub Desktop.
Atom Snippets
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
'.text.html.erb': | |
'Form for': | |
'prefix': 'ff', | |
'body': """ | |
<%= form_for ${1:model} do |f| %> | |
$3 | |
<%= f.submit "${2:button_name}" %> | |
<% end %> | |
""" | |
'ERB if': | |
'prefix': 'if', | |
'body': """ | |
<% if ${1:test} %> | |
$2 | |
<% end %> | |
""" | |
'ERB end': | |
'prefix': 'end', | |
'body': """ | |
<% end %> | |
""" | |
'ERB each': | |
'prefix': 'each', | |
'body': """ | |
<% @${1:variable}s.each do |${1:local}| %> | |
$2 | |
<% end %> | |
""" | |
'ERB link_to': | |
'prefix': 'link', | |
'body': """ | |
<%= link_to ${1:text}, ${2:address} %> | |
""" | |
'ERB Show Model Attribute': | |
'prefix': 'ma', | |
'body': """ | |
<%= @${1:text}.${2:method} %> | |
""" | |
'ERB render': | |
'prefix': 'ren', | |
'body': """ | |
<%= render @${1:variable} %> | |
""" | |
'ERB render with locals': | |
'prefix': 'renl', | |
'body': """ | |
<%= render partial: "${1:partial}", locals: { ${2:key}: ${3:value} } %> | |
""" | |
'ERB render with collection': | |
'prefix': 'renc', | |
'body': """ | |
<%= render partial: "${1:partial}", collection: @$4 %> | |
""" | |
'BS row column': | |
'prefix': 'brc', | |
'body': """ | |
<div class="row"> | |
<div class="col-md-${1:num}"> | |
$2 | |
</div> | |
</div> | |
""" | |
'BS row column': | |
'prefix': 'bcol', | |
'body': """ | |
<div class="col-md-${1:num}"> | |
$2 | |
</div> | |
""" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment