Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VS2012: Ctrl+F now synchronizes with Ctrl+Shft+F

In Visual Studio 2012, I want different context for Ctrl+F and Ctrl+Shift+F. However, when I enter data in the Ctrl+F dialog (in the upper right corner of the text editor), it synchronizes that information to the dialog shown by Ctrl+Shift+F. I don't want that. I want Ctrl+Shift+F to do a search in the Entire Solution for now and forever. How can I disconnect these dialogs? I'm using Resharper 7.1 and VSCommands11, if that changes things.

(And why does Ctrl+F take three seconds to show the dialog in the upper right corner? It bugs me when I press Ctrl+F and start typing only to find that it changes my source file.)

like image 595
Brannon Avatar asked Jun 03 '13 18:06

Brannon


1 Answers

Open the options-window. (Tools->Options). In the tree on the left side select Environmend->Keyboard. There are two entries relevant for you:

  • Edit.Find is for the Search-Box at the right upper corner (Ctrl+F)
  • Edit.FindinFiles is for the SearchDialog (Ctrl+Shift+F)

Maybe any of your VisualStudio-Extension has set these Commands to other commands.

In my studio both searches are separated from each other. If I set Entire Solution in the Ctrl+Shif+F-Dialog, that does not affect the Ctrl+F-Dialog

like image 167
Tomtom Avatar answered Oct 17 '22 03:10

Tomtom