Created
October 24, 2016 17:30
-
-
Save thadeu/17422266d9df880361c67f7dcff1105c to your computer and use it in GitHub Desktop.
User Snippets ERB - Visual Studio Code
This file contains hidden or 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
{ | |
"ERB Block": { | |
"prefix": "erb", | |
"body": [ | |
"<%$1 %>" | |
], | |
"description": "Block Erb Tag" | |
}, | |
"End Block": { | |
"prefix": "end", | |
"body": [ | |
"<% end$1 %>" | |
], | |
"description": "End Erb Block" | |
}, | |
"Render block": { | |
"prefix": "render", | |
"body": [ | |
"<%= render '$1' %>" | |
], | |
"description": "Render Block" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment