2

Is there a plug-in (or built-in feature) for Visual Studio 2008 to be able to do a quick in-line find in your code?

I am unhappy with the find feature (Ctrl+F). I don't like how it pops up in its own window. I think it would be much better if it was more like the Firefox find. (Try Ctrl+F in Firefox). I like how you start typing and it instantly tries to match what you're typing. Often you don't have to type your full search term before you find what you want.

I am use to FlashDevelop, and think they have good some great search functionality. you can just selected a word in your code and tap F3. It will instantly select the next occurrence of that string.

So is there anything out there with this sort of functionality?

Heinrich Cloete
  • 702
  • 5
  • 12
Adam Harte
  • 10,369
  • 7
  • 52
  • 85

3 Answers3

10

Type Ctrl+I. This is the "inline find" version you want.

Steve P.
  • 14,489
  • 8
  • 42
  • 72
1800 INFORMATION
  • 131,367
  • 29
  • 160
  • 239
3

Ctrl+F3 will start a search for the word that the caret is in (without displaying the Find dialog). Subsequent presses of F3 will continue the search forward. Shift+Ctrl+F3 will search backwards. The whole word and case sensitive options of the Ctrl+F Find dialog are used during Ctrl+F3.

Hulk1991
  • 3,079
  • 13
  • 31
  • 46
sean e
  • 11,792
  • 3
  • 44
  • 56
2

You already got your answer from 1800 INFORMATION, but I figured you might find this one interesting as well:

Favorite Visual Studio keyboard shortcuts

A good amount of Visual Studio keyboard goodness.

Community
  • 1
  • 1
Fredrik Mörk
  • 155,851
  • 29
  • 291
  • 343