Is there a parameter in the original Pydev editor (Aptana studio for Eclipse) where I can see what level of indentation a particular line has in a Python file? Something like a vertical line or marker on the top / bottom edges of the window (as seen from the image processing tools).
When the source code with several levels of indentation can be quite difficult to understand what level it has:
def foo(): while True: #stuff #stuff if "foo" == "bar": #stuff #stuff while False: #stuff #stuff #stuff #stuff if "baz" == "baz": #stuff #stuff else: #stuff #stuff #stuff #stuff ------> would be nice to have some visible cue that this is on level with the 'if'
source share