Is there already a known solution for correctly indenting multi-line lists, so that the elements properly align with each other, e.g. in Python:<br><br><span style="font-family: courier new,monospace;">myList = [firstElement,</span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">          SecondElement]       # 'f' and 'S' align</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;"> </span><br style="font-family: courier new,monospace;">
<span style="font-family: courier new,monospace;">myDict = {key1:value1,</span><br style="font-family: courier new,monospace;"><span style="font-family: courier new,monospace;">          key2:value2}         # the two 'k' align</span><br style="font-family: courier new,monospace;">
<br><br>It seems the lack of fine control over indentation in Textmate is already well known; I was just wondering if there is any commonly accepted (interim?) solution.<br><br>Thanks!<br>Abhi<br><br>