Created
September 27, 2016 00:27
-
-
Save thadeu/96ea9be93b809146a379bc28763bce8b to your computer and use it in GitHub Desktop.
Snippets Ruby on Rails Visual Studio Code MacOS
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