Blankman
Blankman

Reputation: 267260

Does Xcode have a navigate to file/class shortcut?

I want something like in textmate where I can quickly navigate to a file or class

Upvotes: 25

Views: 11082

Answers (5)

Maxwell
Maxwell

Reputation: 6812

For anyone finding this question years after it was asked, you can jump to a file by having your cursor on the class name and typing

Cmd+^+J

Upvotes: -1

Thomas Zoechling
Thomas Zoechling

Reputation: 34263

Command-Shift-O displays the "Quick Open" Window.

Upvotes: 48

Johnny Oshika
Johnny Oshika

Reputation: 57562

The 'Quick Open' shortcut was changed to Command-Shift-o (that's the letter o and not zero) in XCode 4

Upvotes: 5

bealex
bealex

Reputation: 10014

You can Cmd+Double click on an item to navigate there. Also, you can assign shortcut for either menu Edit->Find->Jump to Definition or Jump to Selection, but the behavior there is not accurate.

Upvotes: 0

user557219
user557219

Reputation:

I don’t use TextMate, but maybe this is what you want: File -> Open Quickly… (or shift-command-D). Another useful shortcut is View -> Switch to Header/Source File (or option-command-up arrow) to switch between header file (.h) and source file (.m).

Upvotes: 1

Related Questions