20

I have inadvertantly added some entries to the "Find and Replace" dialog in Visual Studio 2010. See picture below:

enter image description here

I want to remove \r\n, Double, etc.

How can I do this?

2 Answers2

21

These entries are located in the following registry key:

HKCU\Software\Microsoft\VisualStudio\10.0\Find

They will be prefixed with Query and then followed by a number.

row1
  • 425
5

The location for those entries is:

HKEY_USERS \ {user guid} \Software\Microsoft\VisualStudio\10.0\Find

where [user guid] is the guid for the current user.

really I just searched the registry for some entries that I added by accident while testing if there was another way to remove them.

Ryan_S
  • 663