<div dir="ltr"><div>I created a snippet for graphviz for subgraphs as follows:</div><div><br></div><div><div>subgraph cluster_${1/[[:alpha:]]+|( )/(?1:_:\L$0)/g} {</div><div>  style = filled;</div><div>  bgcolor = lightgrey;</div>

<div>  $0</div><div>  label = "$1"</div><div>}</div></div><div><br></div><div>With it in TM1, I can quickly create snippets such as:</div><div><div>subgraph cluster_subgraph_label {</div><div>  style = filled;</div>

<div>  bgcolor = lightgrey;</div><div>  </div><div>  label = "Subgraph Label"</div><div>}</div></div><div><br></div><div>In TM1, after expanding the snippet, the cursor moves to the 'label = "$1"' location of the $1 placeholder. However, in TM2, the cursor jumps up to the subgraph_cluster_ line, where I'm unable to take advantage of the text transformation there. I guess this would work if reworked the transformation to be on second $1, but wanted to know what the consistent behavior is or will be.</div>

<div><br></div><div>Thank you for your help.</div>
</div>