In Xcode 3 I use to be able to select some text, right click and search for that text.

However in Xcode 4 this seems to have disappeared ?

Is there a quick alternative instead ?

EDIT I'd select some source code and it would find all occurences in the rest of the source code.

link|improve this question

Can you be more specific about what you mean by "search for that text"? For example, after selecting some text and right-clicking in Xcode 3, there's Find in Project, Find Text in Documentation, Jump to Definition, Search in Spotlight, and Quick Help. – NSGod Apr 21 '11 at 17:14
feedback

6 Answers

up vote 4 down vote accepted
+25

Select text; cmd-E

Then Shift-cmd-F; return

Boom.

link|improve this answer
feedback

Select your text, hit command-E ("use selection for find") and command-G to iterate through results.

link|improve this answer
Hmmm, that only searches within the current file, not other source files / project :( – Jules Apr 27 '11 at 17:55
I thought you only wanted in a single file. Shift-cmd-F is needed to do a multi file search, if you do the cmd-E first the S-C-F will be populated with the text you want so you can just hit return. – Stripes May 3 '11 at 0:01
feedback

Find in Workspace appears to be fundamentally broken in Xcode 4.

Someone else posted a workaround: toggle the Assistant Editor button to enable the menu item. However it still is not available for text in the debug output area.

link|improve this answer
feedback

You can always try some keyboard shortcuts combination once your text is selected :

  • command+C
  • command+F (if you want to search in the current file, otherwise shift+command+F to look into the whole project)
  • command+V

Then you can iterate through the results with command+G to go forward or shit+command+G to go backward.

Hope this helps.

link|improve this answer
Not very quick. – Jules Apr 21 '11 at 17:55
You can skip the copy-paste steps if you use ⌘E, ⇧⌘F – jdelStrother Apr 28 '11 at 10:36
feedback

Search in workspace (you can read the keyboard abbreviation in Edit -> Find -> find in workspace

link|improve this answer
feedback

is it not working in xcode 4 -

command + shift + f

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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