burnt1ce
burnt1ce

Reputation: 14897

is it possible to get Visual studio to index source code to improve string search?

I often use the string search feature for an entire solution in VS2008. Is there a way to improve its search speed by getting VS2008 to index all the source code and config files, similar to how Google Desktop index files?

Upvotes: 4

Views: 2871

Answers (4)

mhenry1384
mhenry1384

Reputation: 7688

This adds instant full text search of all files in a VS solution.

Not free but cheap and is well worth the money. 30 day trial.

http://entrian.com/source-search/

Remap Ctrl+Shift+F to Entrian's Activate and you get what VS's Find in Files always should have been.

I'm using it in VS 2010, it says it works with 2005 and 2008 as well.

(I have no affiliation with the company).

Upvotes: 3

djangofan
djangofan

Reputation: 29669

I like searching using a tool called WildReplace .

Upvotes: 0

JaredPar
JaredPar

Reputation: 754763

This is not a supported feature of Visual Studio. The find in files feature simply goes through the files searching for the specified text and does not take advantage of any indexing.

It is possible to search using other 3rd party components using and indexed database though.

Upvotes: 1

Matthew Vines
Matthew Vines

Reputation: 27561

Though I don't think it is possible to do within visual studio you may want to use WinGrep, or another grep tool to do this sort of search instead.

Upvotes: 2

Related Questions