734

Does Eclipse have a way to search a whole project for some text like Xcode's "find in project" feature?

el-teedee
  • 1,159
  • 1
  • 14
  • 24
William Jockusch
  • 26,421
  • 48
  • 170
  • 299

16 Answers16

945

1. Ctrl + H
2. Choose File Search for plain text search in workspace/selected projects

For specific expression searches, choose the relevant tab (such as Java Search which allows you to search for specific identifiers)

For whole project search:

3. Scope (in the form section) > Enclosing project (Radio button selection).

Chris Halcrow
  • 21,541
  • 11
  • 115
  • 145
Yuval Adam
  • 149,388
  • 85
  • 287
  • 384
  • 21
    "CTRL-H -> File Search (TAB) -> Scope (FORM SECTION) -> Enclosing projects (RADIO BUTTON OPTION)" will work for only the current project where you are coding. – JStrahl Sep 06 '13 at 07:17
  • 1
    @Strahlee that is actually what brought me to this question. ctrl+H is well documented over the internet, but it does a global search on ALL projects in the package explorer, which is very very annoying. By using the Enclosing Projects option, it appears to limit the search per project. The answer here should be updated to reflect this. – JohnMerlino Jun 16 '14 at 05:33
  • 5
    With Eclipse Kepler, you need to fill the `File name patterns` too, e.g with `*`. Until this information is given, the `Search` button is grayed. Didn't know a search function could be so cryptic before meeting with Eclipse. – mins Sep 15 '14 at 21:16
  • 1
    I have multiple projects, but only want to search one. How do I do that? – Mawg says reinstate Monica May 23 '17 at 10:00
94

Ctrl + Alt + G can be used to find selected text across a workspace in eclipse.

OSX: ⌥ Option + ⌘ Command + G

Mohammed H
  • 6,326
  • 12
  • 72
  • 119
Jainendra
  • 23,305
  • 30
  • 116
  • 165
79

Press Ctrl + H to bring up the search that includes options to search via project, directory, etc.

Jason McCreary
  • 66,624
  • 20
  • 123
  • 167
30

Ctrl+H.

Also,

  • Open any file quickly without browsing for it in the Package Explorer: Ctrl + Shift + R.

  • Open a type (e.g.: a class, an interface) without clicking through interminable list of packages: Ctrl + Shift + T.

  • Go directly to a member (method, variable) of a huge class file, especially when a lot of methods are named similarly: Ctrl + O

  • Go to line number N in the source file: Ctrl + L, enter line number.

rink.attendant.6
  • 36,468
  • 57
  • 89
  • 143
shubhz
  • 325
  • 3
  • 3
14

Ctrl + H is the best way! Remember to copy the string before you start searching!

Chintan Khetiya
  • 15,208
  • 9
  • 41
  • 81
Tam Dao
  • 427
  • 4
  • 10
14

Open Search Dialog Search-> Search... or use Shortcut Ctrl + H.

  1. Containing text: Type the expression for which you wish to do the text search.
  2. Choose if you want Case sensitive, Regular expression or Whole word
  3. File name patterns: In this field, enter all the file name patterns for the files to find or search through for the specified expression.
  4. Scope: Choose the scope of your search. You can either search the whole workspace, pre-defined working sets, previously selected resources or projects enclosing the selected resources.
  5. Press Search

enter image description here

Sumit Singh
  • 23,530
  • 8
  • 71
  • 99
6

You should check out the new Eclipse 2019-09 4.13 Quick Search feature

The new Quick Search dialog provides a convenient, simple and fast way to run a textual search across your workspace and jump to matches in your code.

The dialog provides a quick overview showing matching lines of text at a glance.
It updates as quickly as you can type and allows for quick navigation using only the keyboard.

https://www.eclipse.org/eclipse/news/4.13/images/quick-search.png

A typical workflow starts by pressing the keyboard shortcut Ctrl+Alt+Shift+L
(or Cmd+Alt+Shift+L on Mac).
Typing a few letters updates the search result as you type.
Use Up-Down arrow keys to select a match, then hit Enter to open it in an editor.

Community
  • 1
  • 1
VonC
  • 1,042,979
  • 435
  • 3,649
  • 4,283
  • 1
    Yes, this is what I`ve been looking for, although, 4 key combination is little too much to remember. Is there any other way to trigger this very window? Thank you in advance. – rchrd Jul 28 '20 at 13:06
  • 1
    @rchrd Not that I know of. I use three keys to remember the 4 keys combinations: https://stackoverflow.com/a/4105518/6309, https://stackoverflow.com/a/1986236/6309 – VonC Jul 28 '20 at 15:24
5

CTRL + H is actually the right answer, but the scope in which it was pressed is actually pretty important. When you have last clicked on file you're working on, you'll get a different search window - Java Search: enter image description here

Whereas when you select directory on Package Explorer and then press Ctrl + H (or choose Search -> File.. from main menu), you get the desired window - File Search: enter image description here

Mwiza
  • 4,494
  • 2
  • 33
  • 30
tlegutko
  • 658
  • 2
  • 10
  • 16
4

yes, but you need to open the global search panel. to do so, press the binoculars icon on the top right corner of the IDE.

you can even filter searches by function identifiers, method scopes an etc...

  • Choose File Search for plain text search in workspace/selected projects
  • For specific expression searches, choose the relevant tab (such as Java Search which allows to search for specific identifiers)
McDowell
  • 102,869
  • 29
  • 193
  • 261
jujuju
  • 49
  • 1
2

First customize your search dialog. Ctrl+H. Click on the Customize button and select inly File Search while deselecting all the others. Close the dialog.

Now you can search by selecting the word and hitting the Ctrl+H and then Enter.

Fabrizio
  • 6,598
  • 5
  • 31
  • 75
Bob Ueland
  • 1,658
  • 14
  • 20
1

yes, but you need to open the global search panel. to do so, press the binoculars icon on the top right corner of the IDE.

you can even filter searches by function identifiers, method scopes an etc...

shukshuk
  • 941
  • 5
  • 21
1

There is no way to do pure text search in whole work workspace/project via a shortcut that I know of (and it is a PITA), but this will find references in the workspace:

  1. Put your cursor on what you want to lookup
  2. Press Ctrl + Shift + g
Christophe Roussy
  • 13,732
  • 2
  • 75
  • 75
1

There is very nice tool "Eclipse Quicksearch" available. Checkout SpringSource Update Site for Eclipse i.e: http://dist.springsource.com/release/TOOLS/update/e4.6/ (you can try other versions replacing last part of URL with i.e. e4.4 or e4.5)

It works well with Neon Release (4.6.0). It gives you nice incremental text search with source file preview. I had no issues with it so far.

Usage: Alt + s "Quick Search Command" opens "Quick Text Search" dialog. You can select whether search should be case sensitive or not. Really good tool.

Marek Podyma
  • 573
  • 7
  • 9
0

Ctrl+H is very handy here. I mostly search in the current project, not the whole workspace. To find all occurences in the whole project of a string that is in your current buffer, just select the string press Ctrl+H and hit enter. Easy as that!

Use Resource Filters! Eclipse will restrict the search result using the Resource Filters defined for your project (eg. right click on you project name and select Properties -> Resource -> Resource Filters). So if you keep getting search hits from parts of your project that your not interested in you could make Eclipse skip those by adding a Resource Filter for them. This is especially useful if you have build files or logs or other temporary files that are part of your projects directory structure, but you only want to search amongst the source code. You should also be aware of that files/directories matched for exclusion in the Resource Filters will not show up in the Package Explorer either, so you might not always want this.

Fabrizio
  • 6,598
  • 5
  • 31
  • 75
0

What others have forgotten is Ctrl+Shift+L for easy text search. It searches everywhere and it is fast and efficient. This might be a Sprint tool suit which is an extension of eclipse (and it might be available in newer versions)

Fabrizio
  • 6,598
  • 5
  • 31
  • 75
  • 1
    The default binding for this combination is "Show Key Assist" now. Don't know what you were referring to. – Noumenon Aug 18 '15 at 14:00
0

Search and Replace'

Ctrl + F Open find and replace dialog

Ctrl + F / Ctrl + Shift + K Find previous / find next occurrence of search term (close find window first).

Ctrl + H Search Workspace (Java Search, Task Search, and File Search).

Ctrl + J / Ctrl+Shift +J Incremental search forward / backwards. Type search term after pressing Ctrl+J, there is now search window Ctrl+shift+O Open a resource search dialog to find any class

Varun
  • 5,501
  • 18
  • 69
  • 107