Anshu Kumar
Anshu Kumar

Reputation: 633

Eclipse plug-in for search file with path

As working on enterprise application. There are lots of java project (13 project) in my eclipse, which all build with Ant and generate Estore.ear.

While working we all use cntrl+r. I need a plugin or suggest a way to developed or improvise the cntrl+r search with Path matching too.

If anyone think on this way share your though or you know any plug which search with path. share with us

Upvotes: 0

Views: 170

Answers (1)

Jonah Graham
Jonah Graham

Reputation: 7970

(Assuming you mean open resources dialog, which by default is bound to Ctrl+Shift+R)

You can use wildcards and other special values in the search, for example (from the docs):

Folder prefixes: Both pattern kinds also support folder prefixes. If the pattern contains a /, the part before the last / is used to match a path in the workspace, e.g. "org.eclipse.ui/plugin.xml". Or a bit more complex: "/ui.html" matches e.g. files called "package.html" in a folder named "ui" (but not in folders like "uitools" or "*/ui/internal").

These docs are available right on the dialog, press the help icon then Open Resource dialog:

open resource dialog

Upvotes: 3

Related Questions