When I select multiple lines of code and want to indent them as usual with TAB key, 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 ;)
-
149I wish the Tab key did this in Xcode.devios1– devios12013-03-18 23:07:54 +00:00Commented Mar 18, 2013 at 23:07
-
1Anyone know if you can remap the tab key to this behaviour?Gerard– Gerard2014-05-01 18:48:21 +00:00Commented May 1, 2014 at 18:48
-
1It's funny because I'm pretty sure I was able to use Tab for right indent before. It just one day stopped working...Dmitry– Dmitry2015-01-21 23:56:53 +00:00Commented Jan 21, 2015 at 23:56
21 Answers
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.
11 Comments
Select your code to reindent, then Go to
Editor -> Structure -> Re-Indent
3 Comments
⌘ + [ and ⌘ + ] are the equivalents to shift+tab in Xcode.
1 Comment
Here are the shortcuts, to format the code in XCode
Format entire code (entire class/controller)
Select the entire code and press control+I on mac to format your code.
Format particular block of code
Select the code and press:
- ⌘+] for right move (indent)
- ⌘+[ for left move (un-indent)
Note: as per @JavierGiovannini sugesstion you can do using Editor Menu option
- Select your code and navigate to Editor > Structure > Re-Indent
Another way to quickly reformat indenting is a quick cut and paste. ⌘+x and ⌘+v. I often find it faster than ⌘+[ or ⌘+] as you can do it with one hand (versus two) and it will reformat to the correct indent level in one shot.
2 Comments
⌘+I which "has it indented automatically by XCode", not just "indent a block of lines".Select "Tab key: Indents always" in Preferences->Text Editing->Indentation Then you can indent a single line or a selection of lines by pressing TAB or SHIFT+TAB Sadly this removes altogether the possibility to insert tabs where you want, and conflict badly with the tab key being used to switch between "autocompletion fields".
I guess we need more tab keys in the keyboard, one is not enough...
Comments
If you want to remap the standard Xcode's ⌘+[ to TAB, you can do the following:
Install a program called "Karabiner".
Go to Preferences ~> "Misc and Uninstall"
In "Custom Setting" section click on the "Open private.xml" button
Open the file and replace its content with the following code:
<?xml version="1.0"?> <root> <item> <name>Tab instead of Command+[</name> <identifier>private.swap_tab_and_cmnd+[</identifier> <autogen> __KeyToKey__ KeyCode::TAB, ModifierFlag::NONE, KeyCode::BRACKET_RIGHT, ModifierFlag::COMMAND_L | ModifierFlag::NONE </autogen> </item> </root>Go to Preferences ~> "Change Key" ~> click on "Reload XML" button
Put a tick in the checkbox which is called "Tab instead of Command+["
Enjoy
PS: Please note that this setting works globally on your machine, not just in Xcode. However, I am sure that google might help you to find a solution how to customize it even further, applying the changes only to Xcode.
Comments
Basically ⌘ [ for left multiple indent and ⌘ ] right multiple indent.
For TR keyboard you can left multiple indent with ⌘ ⎇ 8 and right multiple indent with ⌘ ⎇ 9.Because both 8 and 9 are ALT characters of the these nums.Or if you have a keyboard which has [ or ] characters are belong to ALT(⎇) property so you can use ⌘ ⎇ KEYBOARD CHARACTER
Comments
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.

