Is there a command in Xcode 4.2 to swap two views in Assistant Editor mode from left to right and vice versa?

Single Assistant Editor

This can be done in two steps. You can start with the cursor in either the Primary or the Assistant editor.

Step 1:

,Open in Assistant / Primary Editor

It opens the current file (where the cursor is) in Primary Editor if you are in Assistant Editor and vice versa. You end up with two exact same files open.

Step 2:

^`Move Focus to Next Editor (available since Xcode 8, in older version use J)

^Go Back (and open the result) in Primary / Assistant Editor

This opens the previous file of the other editor in the first one.

Idea: It might be even possible to assign a custom shortcut to it using the technique used in Xcode duplicate line. I have not gone so far.

Multiple Assistant Editors

If you are using multiple assistant editors, you can use graphical navigation chooser to choose the destination of each action. You can start in any editor and you can even swap the content of two assistant editors this way.

,Open in… and choose the second editor
JMove Focus to Editor… and choose the second editor (or use ^` multiple times)
^Go Back in… and choose the first editor

Leave a Comment