Anyone know how? I am trying this but it doesn't work:
'text.html.markdown':
'Bash':
'prefix': '`B'
'body': '```Bash\n\n```'
'rubyonrails':
'prefix': '`r'
'body': '```rubyonrails\n\n($1)```'
The scope depends on the language (package) you are using:
.text.md.source.gfmYou can combine both selectors to cover both cases:
'.text.md, .source.gfm':
'Bash':
'prefix': '`B'
'body': '```Bash\n\n```'
'rubyonrails':
'prefix': '`r'
'body': '```rubyonrails\n\n($1)```'