You all know that Visual Studio 2010 is now available in its RTM version. There are lots of features available in Visual Studio 2010. In this tip, I will talk about the incremental search functionality available inside it, which is very useful in day to day life of coding.
So, what is incremental search? Incremental search is a mechanism in Visual Studio 2010 by which you can search and focus on the searched keyword without any UI blocking from the user end. You don’t have to open the find dialog while searching for a specific keyword in your editor window.
Interested to know how it works? Let us open our Visual Studio 2010 IDE and open a sample application. Let's say in your application you have several "Customer
" words and you want to find those.
First, go with the old way by opening the Find pane to search. Press Ctrl + F. This will open up the Find dialog pane. Enter your search keyword to search. Thus you can find your word but as this opens the find pane, the editor window blocks by some UI. Have a look at the below figure:
Now let us go with the new way of finding keyword using the incremental search. Press Ctrl + I in your editor window. This will change your cursor to a find cursor. Now, once you start typing, you will see that it actually starts finding the typed character just like the following figure:
Press Ctrl + I again to go to the next result. If you press Ctrl + Shift +I, this will search in the backward direction.
In this entire search, you will notice that it doesn't open up any extra UI in the screen, thus not blocking the editor window, which is really helpful while searching for some specific word.
Shortcuts for Incremental Search
- (Ctrl + I) => Starts & moves the incremental search in the forward direction
- (Ctrl + Shift + I) => Starts & moves the incremental search in the backward direction
- (ESC) => Stops the incremental search