With outshine, TAB puts the cursor on the innermost (most indented) python scope; in the original Python mode, TAB cycles the cursor between possible scopes . So, originally,
for i in ...
for j in ...
for k in ...
# pressing TAB here cycles between closing the three loops
whereas now, pressing TAB always puts the cursor to close the innermost 'k' loop.
With outshine, TAB puts the cursor on the innermost (most indented) python scope; in the original Python mode, TAB cycles the cursor between possible scopes . So, originally,
for i in ...
for j in ...
for k in ...
whereas now, pressing TAB always puts the cursor to close the innermost 'k' loop.