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:

myList = [firstElement,
          SecondElement]       # 'f' and 'S' align
 
myDict = {key1:value1,
          key2:value2}         # the two 'k' align


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.

Thanks!
Abhi