Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Xcode, I am big fan of the assitant editor that shows me the corresponding .h or .m for the file that I am editing.

Is there a shortcut that allows me to swap focus between this two windows? I frequently switch between the two and using the mouse every time is annoying.

share|improve this question

6 Answers

up vote 13 down vote accepted

@Oneiros: Not quite what the OP was asking for..

I don't know of a 'short' shortcut but there's Cmd-J showing a popup where you can choose what to focus.

share|improve this answer
Cool, thanks. The correct answer wasn't exactly what I was looking for but it was close enough. – Alec Gorge Dec 28 '11 at 18:52
You might also want to check out Cmd-Opt-. and Cmd-Opt-Shift-. for the 'Move Focus to ..' shortcuts - takes a while to discover all those shortcuts ;-) – Jay Oct 11 '12 at 7:11

Use optioncommand` keyboard shortcut.

It's a bit awkward though. Fortunately, the shortcut can be easily remapped to controltab in Preferences - Keyboard Bindings - Move Focus To Next Area.

You can also use XVim plug-in and its controlw followed by hjkl.

share|improve this answer

I made this to help answer another question... Does it help?

XCode shortcuts

share|improve this answer

For Xcode 4.4: Use Cmd+Option+` (left to number 1) to Move Focus to Next Area, and use Cmd+Option+Shift+` to Move Focus to Previous Area

For Xcode 4.3: If you only have the Editor and Assistant open, use Cmd+Option+. to switch between them (Navigator>Move Focus to next area)

share|improve this answer

Switching between .h and .m:
Control ^Command ⌘Up Arrow ↑

share|improve this answer

Also, if you want to open a different file in the right pane, like the .xib or any other, press

Command ⌘shift ⇧o

The open quickly window will appear, search the file, use capital letters to filter through camel case notation, then press

Alt ⌥enter ↵

The file will be opened in the assistant window

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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