A collection of sublime text snippets useful for writing erb
##Snippets and Bindings
Snippet | Tab Trigger | Output |
---|---|---|
ERB tags | __er__ | `<% %>` |
print ERB tags | __pe__ | `<%= %>` |
`if` block | __if__ | `<% if %>...<% end %>` |
`if` / `else` block | __ife__ | `<% if %>...<% else %>...<% end %>` |
`end` block | __end__ | `<% end %>` |