Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

I would like to quickly swap two views from one side to the other and wonder if there is a hotkey for this functionality?

like image 683
pdenlinger Avatar asked Nov 27 '11 17:11

pdenlinger


1 Answers

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
J - Move Focus to Editor... and choose the second editor (or use ^` multiple times)
^ - Go Back in... and choose the first editor

like image 189
Marián Černý Avatar answered Oct 02 '22 03:10

Marián Černý