Visual Studio keyboard shortcut to display IntelliSense

Visual StudioKeyboard Shortcuts

Visual Studio Problem Overview


What's the keyboard shortcut for Visual Studio to display the IntelliSense box if one accidentally hits ESC and wants the box come back again?

Visual Studio Solutions


Solution 1 - Visual Studio

Additionally, Ctrl + K, Ctrl + I shows you Quick info (handy inside parameters)

Ctrl+Shift+Space shows you parameter information.

Solution 2 - Visual Studio

Ctrl + Space

or

Ctrl + J

You can also go to menu ToolsOptionsEnvironmentKeyboard and check what is assigned to these shortcuts. The command name should be Edit.CompleteWord.

Solution 3 - Visual Studio

The most efficient one is Ctrl + ..

It helps to automate insertions of using directives. It works if the focus is on a new identifier, e.g. class name.

Solution 4 - Visual Studio

Ctrl+Space should do it.

Solution 5 - Visual Studio

It should be Ctrl + J.

Solution 6 - Visual Studio

If you have arrived at this question because IntelliSense has stopped working properly and you are hoping to force it to show you what you need, then most likely none of these solutions are going to work.

Closing and restarting Visual Studio should fix the problem.

Solution 7 - Visual Studio

If you want to change whether it highlights the best fitting possibility, use:

Ctrl + Alt + Space

Solution 8 - Visual Studio

Alt + Right Arrow and Alt + Numpad 6 (if Num Lock is disabled) are also possibilities.

Solution 9 - Visual Studio

In Visual Studio 2015 this shortcut opens a preview of the definition which even works through typedefs and #defines.

Ctrl + , (comma)

Enter image description here

Solution 10 - Visual Studio

On Visual Studio Community 7.5.3 on Mac this works for me:

Ctrl + Space

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
QuestionStanView Question on Stackoverflow
Solution 1 - Visual StudioPeter GfaderView Answer on Stackoverflow
Solution 2 - Visual StudioBrunoLMView Answer on Stackoverflow
Solution 3 - Visual StudioAlexander ChernosvitovView Answer on Stackoverflow
Solution 4 - Visual StudioLeniel MaccaferriView Answer on Stackoverflow
Solution 5 - Visual StudiogbackmaniaView Answer on Stackoverflow
Solution 6 - Visual StudioTTTView Answer on Stackoverflow
Solution 7 - Visual StudiomimipofiView Answer on Stackoverflow
Solution 8 - Visual StudioFreeAsInBeerView Answer on Stackoverflow
Solution 9 - Visual StudioDan BechardView Answer on Stackoverflow
Solution 10 - Visual StudioRaphaël RouxView Answer on Stackoverflow