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 ;)
|
feedback
|
|
The keyboard shortcuts are ⌘+] for indent and ⌘+[ for un-indent.
| |||||||
feedback
|
|
Command-[ and Command-] are the equivalents to shift-tab in Xcode. | |||
|
feedback
|
|
Select your code to reindent, then Go to Editor -> Structure -> Re-Indent | |||
|
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. | |||
|
feedback
|