When I select multiple lines of code and want to indent them as usual with TAB, it just deletes them all. I come from Eclipse where I always did it that way. How's that done in Xcode? I hope not line by line ;)

link|improve this question

58% accept rate
feedback

4 Answers

up vote 76 down vote accepted

The keyboard shortcuts are +] for indent and +[ for un-indent.

  • In Xcode's preferences window, click the Key Bindings toolbar button. The Key Bindings section is where you customize keyboard shortcuts.
link|improve this answer
10  
Note that these are commonly used Mac OS X key bindings thus you can indent using CMD-] and CMD-[ in, for example, Mail.app. – Gregory Cosmo Haun Jun 15 '10 at 23:57
Some apps that also run on other OSs use TAB and SHIFT+TAB instead, like eclipse and any derivatives – Aram Kocharyan Feb 9 at 6:50
feedback

Command-[ and Command-] are the equivalents to shift-tab in Xcode.

link|improve this answer
For single lines, but not for multiple lines. – Peter Ajtai Apr 27 at 19:28
feedback

Select your code to reindent, then Go to Editor -> Structure -> Re-Indent

link|improve this answer
feedback

In Xcode 4.2 auto-indenting is pretty good. You can now indent a selection of code by pressing the Tab key. I find that Xcode generally formats code really well automatically, and you rarely have to move things around yourself. I find it faster to select a piece of code, right-click and choose Structure -> Re-indent if some code looks messy.

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.