I am trying to override built-in snippets, I searched for a resolution so I came up with this:
'.text.html.basic, .text.html.php, .text.html.php.blade, .source.smarty':
'Table cell':
'prefix': 'td'
'body': '<td>$1</td>'
'.text.html.basic, .text.html.php, .text.html.php.blade, .source.smarty':
'Table head':
'prefix': 'th'
'body': '<th>$1</th>'
I am testing it in a laravel blade file and while the th snippet works now my way (meaning no new lines, putting everything into the same line) the table cell one doesnt work (still uses the built-in snippet) and I have no idea why.