I've looked around online to try to find a way to delete the history of VS 2010's Find/Replace feature, but all I've gotten are answers only valid for previous versions (VS 05, VS 08, etc.). Does anyone know how clear it for the 2010 version? Thanks!

link|improve this question
May we know WHY you would ever want to do that? – Vilx- Jun 26 '11 at 18:12
A buddy of mine pranked me by having VS find a bunch of expletives while I was away from my computer, so now when I use the find/replace feature it shows all the terms he searched for. I'd like to have those not show up anymore. – Alex Flores Jun 26 '11 at 18:15
feedback

2 Answers

Open regedit.exe, go to HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\10.0\Find. Remove all keys that starts with Find and Replace, like Find1, Find2, Replace1, etc. You can remove history for Find only or Replace only, or remove only particular Find, if you want to.

HKEY_CURRENT_USER user is for user that is currently logged in.

If you need to clear history for another user, you need to go to HKEY_USERS\{UserId}\Software\Microsoft\VisualStudio\10.0\Find

For example HKEY_USERS\S-1-5-21-2705333110-2095705488-3072420928-1000\Software\Microsoft\VisualStudio\10.0\Find.

[EDIT]

Step-by-step:

  1. Make a quick console application:

    public static void Main()
    {
        var findKey = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\VisualStudio\10.0\Find", true);
        findKey.GetValueNames()
            .Where(arg => Regex.IsMatch(arg, @"^Find( \d+)?$"))
            .ToList()
            .ForEach(findKey.DeleteValue);
    }
    
  2. Compile it and close VS.

  3. Run the compiled exe.
  4. Open VS - Find history is empty.

Keep in mind that VS caches this Find and Repalce lists. It persists the lists to the registry when you close VS. So if you clean the list and then restart VS, you will see no effect, because VS restored the list on the shutdown. So you need to close VS, clear the list, open VS.

link|improve this answer
I've already tried that, and there was no /Find that I could see. Is that the only way? – Alex Flores Jun 26 '11 at 18:18
@Alex Flores - this is where VS stores those values. Manual registry edit is not the only way to clear this storage. There are 3rd party tool for this too, but all of them will basically clear these registry keys. – Alex Aza Jun 26 '11 at 18:22
Tried it and it works ! – HerbalMart Aug 3 '11 at 10:23
feedback

My 2 cents - if all else fails, just try searching a lot of different terms yourself. There is a limit on how many searches it remembers, and eventually your own searches will push the unwanted ones off the list.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.