If i have a snippet save as a css snippet , like below;
`<snippet>
<content><![CDATA[
/* =============================== */
/* ${1:this} */
/* =============================== */
]]></content>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>css-comment</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>source.css</scope>
</snippet>
Now this only works in my css file if i do:
someElement {
// it works only inside here.
}
How do i make the above work anywhere inside my css file ? not just inside selector brackets ?
`
