11

When we select lines and hit tab, it moves it to right. How do we do the opposite (move left by tab spaces) ?

Rahul Goyal
  • 644
  • 1
  • 8
  • 19

2 Answers2

34

In Atom and in most IDEs you can untab by hitting SHIFT and TAB.

Community
  • 1
  • 1
  • It doesn't seem to work for comment lines. Any idea how to untab in that case? Using backspace only removes one space at a time, and using `Ctrl`+`backspace` removes too much. – afranques Oct 03 '18 at 17:55
9

Use Ctrl+[ to decrease the indentation and Ctrl+] (which is similar as tab) to increase the indentation. Same is valid in other editors as well.

0x0001
  • 525
  • 4
  • 12