brackets-snippets
brackets-snippets copied to clipboard
Bug id inside another id
Hi, can you fix / improve the possibility for adding an id inside another ?
e.g :
funct(${1:var}${2:, ${3:options}}){$4}
actualy, the outpout is
funct(var, ${3:options})
Thanks
Hi this feature is not intended to support, but I'll leave it open.
Why do you need that? Maybe this could help :) :
funct(${1:var}, ${2:options}){$4}
or
funct(${1:var}${2}, ${3:options}){$4}
or
funct(${1:var}${2}, ${3:options} = array('${4:key}'=>${5:value})){$6}