Skip to content

Instantly share code, notes, and snippets.

@MilanGrubnic70
Last active January 10, 2017 23:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MilanGrubnic70/f381fa2011a541c6a0220ae6d166f5d4 to your computer and use it in GitHub Desktop.
Save MilanGrubnic70/f381fa2011a541c6a0220ae6d166f5d4 to your computer and use it in GitHub Desktop.
Embedded Ruby Shortcut Keybinding
// alt + r will get you <% _ %>
// shirt + alt + r will get you <%= _ %>
[
{ "keys": ["alt+r"],
"command": "insert_snippet",
"args": {
"contents": "<% ${1:}$SELECTION %> ${0}"
}
},
{ "keys": ["shift+alt+r"],
"command": "insert_snippet",
"args": {
"contents": "<%= ${1:}$SELECTION %> ${0}"
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment