python indentation trouble
Submitted by Saturday, 26 June, 2004 - 14:16
on
hi, i'm trying to use jedit with python, but jedit fails in indentation
e.g
i define a loop ('_' instead of ' ' for readability) : but it doesn't unindent as needed, it just goes 1 space back. In every other python editor i've been using for years (emacs, idle, etc) behaves as expected.
e.g
i define a loop ('_' instead of ' ' for readability)
for i in range(10): ____print ithen to get out of the loop, i hit
for i in range(10): ____print i ___outSideOfTheLoopinstead of
for i in range(10): ____print i outSideOfTheLoopso i can't use jEdit to python