I am trying to override default snippets in Atom, because I want to change the default script snippet from
<script charset="utf-8"></script>
to
<script src=""></script>
I have put the following into snippets.cson.
'.text.html':
'Comment':
'prefix': 'com'
'body': '<!-- $1-->'
'Script':
'prefix': 'script'
'body': '<script src="$1"></script>'
My 'com' snippet works fine. But script results in the default snippet, not my new one.