In snippets, I can’t use tab to go to another placeholder $1 or ${1:sublime_is_awesome}
When string contains curly brackets like this:
<snippet>
<content><![CDATA[
\{% $0 %\}
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>w</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>text.html.twig</scope>
</snippet>
As u see I tried to escape but nothing happens
After lunching snippet and pressing tab It goes to an end of the string and removes { } from whole string.
It doesn’t go to $0 at it supposed to do.
Please help
Cheers!