Some keys are not working on my VS2015

2

The F1 and F12 keys are not working. I use a DELL notebook with windows 10. I put the cursor on top of a class, I gave F12 to go to the function and nothing. I gave F5 and the project did not run. What could be happening?

    
asked by anonymous 08.02.2016 / 13:56

1 answer

3

Weird behavior, but you can try resetting your Visual Studio to the initial settings. But before doing this try doing those basic tests, restart Visual Studio and / or restart your Windows.

Visual Studio provides some command-line parameters that can be used to perform a reset on various types of IDE configurations, below is a list with a small explanation about each:

To run them, just open Run with Win + R and enter the IDE opening command along with the argument (can be done in other ways, but is just an example), as devenv.exe [/parâmetro] .

  • /ResetUserData - Resets all user settings;
  • /ResetSettings - Restores the IDE to the default settings and optionally allows you a specific settings file through one more argument;
  • /ResetSkipPkgs - Removes all SkipLoading tags added to Visual Studio packages.
  • /ResetAddin - Removes commands associated with a specific add-in.

You can check the original description of these parameters using devenv.exe /? .

Try performing these procedures, if it does not work perhaps the only solution is to reinstall your Visual Studio

    
08.02.2016 / 14:42