If you want to indent several lines in Python you just mark the lines and hit Tab. But what if you want to remove the indent from several lines? Is there a quick way to do that?

Thanks

edit: I use IDLE.

link|improve this question

80% accept rate
What editor do you use? – Gumbo Apr 26 '09 at 12:07
Is the help disabled in IDLE? Under the Format menu, I see these things in my copy of IDLE. Is yours broken? – S.Lott Apr 26 '09 at 12:39
Why click on menus when one can ask questions on SO? – tzot Apr 26 '09 at 15:09
Good point -- it may take longer to wait for an SO answer, but you get reputation paints. – S.Lott Apr 26 '09 at 17:12
feedback

4 Answers

If you're using IDLE, and the Norwegian keyboard makes Ctrl-[ a problem, you can change the key.

  1. Go Options->Configure IDLE.
  2. Click the Keys tab.
  3. If necessary, click Save as New Custom Key Set.
  4. With your custom key set, find "dedent-region" in the list.
  5. Click Get New Keys for Selection.
  6. etc

I tried putting in shift-Tab and that worked nicely.

link|improve this answer
Nice - I might change to shift+tab – Smashery Apr 26 '09 at 13:00
feedback

If you're using IDLE, you can use Ctrl+] to indent and Ctrl+[ to unindent.

link|improve this answer
hmm.. I'm working on a Norwegian keyboard and to make the '[' I have to hold down Alt Gr, but still its still want do the trick. – Thanx Apr 26 '09 at 12:28
feedback

Depends on your editor.

Have you tried Shift+Tab?

link|improve this answer
Have tried this, not working. – Thanx Apr 26 '09 at 12:27
feedback
Shift-Tab
Ctrl-Tab
< key

depends on your editor.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.