F12 no longer works in Visual Studio

Visual Studio-2005Keyboard Shortcuts

Visual Studio-2005 Problem Overview


This is driving me crazy. Ever since I installed ReSharper 4, F12 no longer seems to work. If you look at the all the ReSharper short cuts in the Goto sub menu Declaration doesn't have any assigned!

The only way I can go to declaration is by using Alt and ` and then selecting Declaration.

I have tried un-installing and re-installing ReSharper with no luck, I have also, in ReSharper option asked it to use the default Visual Studio Key Bindings but that doesn't to work either.

Interestingly, when I do use Alt and ` I actually get two entries for the Declaration option.

Has anyone come across this problem?

I am using Visual Studio 2005 SP1.

Visual Studio-2005 Solutions


Solution 1 - Visual Studio-2005

I ran into the same issue and resolved it by first resetting my Visual Studio keyboard mappings:

> Tools > Options > Keyboard > Reset

Then going into the ReSharper options and applying the scheme:

> Resharper > Options > Visual Studio Integration > Apply Scheme

Update:

For VS2017 onwards:

> Tools > Options > Environment > Keyboard > Reset

For Resharper 2017.2:

> Resharper > Options > Environment > Keyboard & Menus > Keyboard Shortcuts > Apply Scheme

Solution 2 - Visual Studio-2005

I have had a few occasions where Resharper and Visual Studio keybindings got mixed up and I had problems sorting them out.

If it is only one or two bindings you care about then you can change them by going to the

Tools->Customize->Keyboard menu option.

Solution 3 - Visual Studio-2005

For ReSharper 8 and Visual Studio 2012:

> Tools > Options > Keyboard > Reset

Then going into the ReSharper options and applying the scheme:

> Resharper > Options > Environment > Keyboard & Menus > (Select Visual Studio under Keyboard Shortcuts) > Apply Scheme > Save

Solution 4 - Visual Studio-2005

I had this problem and it was resolved by following the steps described in the picture:

Open Visual Studio Tabs on the path: Tools>>Options>>Keyboard

enter image description here

Open Visual Studio Tabs on the path: Resharper>>Options>>Keyboard & Menus and Do the following:

enter image description here

And Then Reopen the path above and do the following:

enter image description here

Finally, close the Visual Studio and open it.

Solution 5 - Visual Studio-2005

I had this issue in VS2015 using Resharper 9.1.3, I tried Ryan's answer but it still didn't work.

  • After doing the steps Ryan outlined, I clicked F12 where Resharper asks What do you want to do?, I select Use Visual Studio commands. Still doesn't work.
  • Tools > Options > Keyboard > Select ReSharper.ReSharper_GotoNextHighlight from command list box
  • Change Shortcuts for selected command to F12 (Text Editor), click Remove and OK.

After this it works!

Solution 6 - Visual Studio-2005

It is possible that you have enabled Fn mode (Blue Keys) on your keyboard which overrides default behavior of functional keys including F12.

Solution 7 - Visual Studio-2005

I had the same problem with VS2013 and Resharper 9. I have a code like this:

gridList.Method1();
gridList.Method2();

I then right-click on any of gridList and click Find Usages (or just use Shift+F12) but it says "Usages not found" even though it is just one line away! Sometimes VS restart would help, sometimes it wouldn't. It looks like clearing the cache of Reshaper helps though: Resharper -> Options -> Environment -> General -> Clear Caches. This needs VS to be restarted, but then it started working as expected.

Solution 8 - Visual Studio-2005

My problem was that I couldn't use the command "Alt + F12" when trying to "peek definition" in Visual Studio. I found out through another forum-thread that it was Nvidia's GeForce Experience that overrides some of the "Alt" shortcuts and uses them for their functionalities with screen recordings etc.

What solved it for me, was going into the GeForce Experience settings and switch off the use of in-game overlay:

enter image description here

Alternatively, if you want to use the overlay, you can just change the short cut commands.

Solution 9 - Visual Studio-2005

Try simple way to enable it, press Fn + Esc key of the keyboard.

Solution 10 - Visual Studio-2005

For ReSharper Ultimate 2017.3.3 and Visual Studio 2017: Tools > Options > Tools > External Sources > Default Visual Studio Navigation > Saveenter image description here

Solution 11 - Visual Studio-2005

I ran into this problem after an organizational change that caused my windows profile to change. I tried the solutions listed above, but nothing seemed to work. Here is how I fixed it (brute force worked!)

NOTE: Steps listed are for VS 2012 and ReSharper 7.1.3

  1. Uninstalled Re-Sharper
  2. Exit visual studio, ensure the process devenv.exe is no longer there in the running processes (was there in my case and I had to do a "End Process Tree" from Task Manager)
  3. Fired up VS 2012, and from the menu Tools -> Options -> Environment -> Keyboard selected Visual C# 2005 (or any other setting you love) and pressed Reset
  4. Shutdown VS again (and ensure devenv.exe has been killed in Task manager)
  5. Re-installed re-sharper

Best of luck!

Solution 12 - Visual Studio-2005

These steps solved it for me:

  1. Uninstall keyboard in Device Manager
  2. Re-insert your keyboard usb

Solution 13 - Visual Studio-2005

"Web Essentials" Add or update visual studio "Web Essentials" You can find it at: Menu>>Tools>>Extensions and Updates

I hope this will save your time. It worked for me.

Web Essentials

Solution 14 - Visual Studio-2005

ReSharper added a crap 'good' new thing that they now call a feature: Smart Go To Declaration. As dumb as it may sound, it comes enabled by default: crap 'good'.

The feature is described on the link provided from here but honestly at least it should've keep it disabled, not reinvent the wheel. It also tells you how to disable that crap 'good' feature.

Solution 15 - Visual Studio-2005

Sometimes it has noting to do with Visual Studio at all. Be sure your keyboard has its function key setting of the keyboard itself to send the F12 function to Visual Studio. It is an easy thing to miss.

Solution 16 - Visual Studio-2005

I had just installed Pulover’s Macro Creator and F12 was set as the global hotkey to pause a macro. It was intercepting the keypress before it had a chance to get to VS.

Solution is to change that hotkey to something else. I chose Ctrl-F12. The input box is on the top right of the Pulover window.

After changing the hotkey

Solution 17 - Visual Studio-2005

Update 2020. I had the same problem and also tried a lot of ways, but that was still didn't working... [VS 2015, ReSharper 2019.3.1] But, like Andrius said: Resharper -> Options -> Environment -> General -> Clear Caches. This needs VS to be restarted, but then it started working as expected.

Summary is: (try steps above) + Resharper..-> Clear Caches + VS restart. Hope this will be useful

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionDeanView Question on Stackoverflow
Solution 1 - Visual Studio-2005RyanView Answer on Stackoverflow
Solution 2 - Visual Studio-2005RikalousView Answer on Stackoverflow
Solution 3 - Visual Studio-2005kristoffer_oView Answer on Stackoverflow
Solution 4 - Visual Studio-2005BehrouzMoslemView Answer on Stackoverflow
Solution 5 - Visual Studio-2005David ChiewView Answer on Stackoverflow
Solution 6 - Visual Studio-2005Yury KozlovView Answer on Stackoverflow
Solution 7 - Visual Studio-2005Andrius NaruševičiusView Answer on Stackoverflow
Solution 8 - Visual Studio-2005Christian LarssonView Answer on Stackoverflow
Solution 9 - Visual Studio-2005rgargView Answer on Stackoverflow
Solution 10 - Visual Studio-2005koly86View Answer on Stackoverflow
Solution 11 - Visual Studio-2005Sudhanshu MishraView Answer on Stackoverflow
Solution 12 - Visual Studio-2005qiucwView Answer on Stackoverflow
Solution 13 - Visual Studio-2005Nour LababidiView Answer on Stackoverflow
Solution 14 - Visual Studio-2005Dan MihaleaView Answer on Stackoverflow
Solution 15 - Visual Studio-2005Larry AultmanView Answer on Stackoverflow
Solution 16 - Visual Studio-2005Dennis T --Reinstate Monica--View Answer on Stackoverflow
Solution 17 - Visual Studio-2005mbiesView Answer on Stackoverflow