It’s nice being able to press tab and move the cursor out of quotes. The only problem with is when trying to trigger a snippet within quotes. In the following situation, i’d like to be able to type “php + tab” and trigger my snippet that opens a php block:
<a href="{cursor}">link</a>
Problem is the snippet behavior is overridden by sublimes native behavior to tab out of quotes and I end up like this:
<a href="php"{cursor}>link</a>
Is there a way to prevent this from happening?