(AVISO: a seguinte mensagem faz uso da formatação HTML)<br><br>Tenho a seguinte dúvida de longa data... Passei perltidy no seguinte código:<br><br><span style="font-family: courier new,monospace;">my %avg = (</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">    hits<span style="background-color: rgb(255, 255, 51);">  </span>=&gt; 0,</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">    bids<span style="background-color: rgb(255, 255, 51);">  </span>=&gt; 0,</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">    price<span style="background-color: rgb(255, 255, 51);"> </span>=&gt; 0,</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">);</span><br style="font-family: courier new,monospace;">

<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">$attr-&gt;{leaf}<span style="background-color: rgb(255, 255, 51);"> </span>= $categ-&gt;[0];</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">$attr-&gt;{lft}<span style="background-color: rgb(255, 255, 51);">  </span>= $categ-&gt;[3];</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">$attr-&gt;{rgt}<span style="background-color: rgb(255, 255, 51);">  </span>= $categ-&gt;[4];</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">$attr-&gt;{upd}<span style="background-color: rgb(255, 255, 51);">  </span>= $hist-&gt;now;</span><br><br clear="all">As atribuições (&quot;=&gt;&quot; e &quot;=&quot;) foram alinhadas pelo nome mais longo (&#39;price&#39;, no primeiro caso, e &#39;$attr-&gt;{leaf}&#39;, no segundo, destaquei os espaços em amarelo para visualizar).<br>

Gostaria de saber se é possível alinhar pelo nome mais longo MAIS indentação, ou seja, este mesmo exemplo ficaria como:<br><br><span style="font-family: courier new,monospace;">my %avg = (</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">    hits<span style="background-color: rgb(255, 255, 51);">    </span>=&gt; 0,</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">    bids<span style="background-color: rgb(255, 255, 51);">    </span>=&gt; 0,</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">    price<span style="background-color: rgb(255, 255, 51);">   </span>=&gt; 0,</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">);</span><br style="font-family: courier new,monospace;">

<br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">$attr-&gt;{leaf}<span style="background-color: rgb(255, 255, 51);">   </span>= $categ-&gt;[0];</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">$attr-&gt;{lft}<span style="background-color: rgb(255, 255, 51);">    </span>= $categ-&gt;[3];</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">$attr-&gt;{rgt}<span style="background-color: rgb(255, 255, 51);">    </span>= $categ-&gt;[4];</span><br style="font-family: courier new,monospace;">

<span style="font-family: courier new,monospace;">$attr-&gt;{upd}<span style="background-color: rgb(255, 255, 51);">    </span>= $hist-&gt;now;</span><br><br>ABS()<br><br>