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?
-
6exact duplicate of http://stackoverflow.com/questions/145371/whats-the-default-intellisense-shortcut-in-vs2008 – mcabral Sep 04 '10 at 01:32
-
Possible duplicate of [What's the default intellisense shortcut in vs2008?](https://stackoverflow.com/questions/145371/whats-the-default-intellisense-shortcut-in-vs2008) – Still.Tony May 14 '18 at 13:13
12 Answers
Additionally, Ctrl + K, Ctrl + I shows you Quick info (handy inside parameters)
Ctrl+Shift+Space shows you parameter information.

- 30,738
- 21
- 105
- 131

- 7,673
- 8
- 55
- 56
-
31Ctrl+Shift+Space is all I needed, I was kinda tired of removing a single character from a parameter just so I could see all signatures and parameter info. Thanks! – Lennard Fonteijn Mar 12 '15 at 00:03
Ctrl + Space
or
Ctrl + J
You can also go to menu Tools → Options → Environment → Keyboard and check what is assigned to these shortcuts. The command name should be Edit.CompleteWord
.

- 30,738
- 21
- 105
- 131

- 97,872
- 84
- 296
- 452
-
1Of note for Messenger plus! users: You have to *change* the lock shortcut, even if it is disabled it interferes with Visual Studio. `Plus! > Preferences & Options > Features > Messenger lock`, and, `Plus! > Passwords > Unlock Messenger`. – BrunoLM May 19 '11 at 14:54
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.

- 30,738
- 21
- 105
- 131

- 690
- 7
- 8
-
1Perhaps this should be qualified with C#. Neither VB.NET or C++ has `using`. – Peter Mortensen Dec 28 '18 at 13:29
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.

- 30,738
- 21
- 105
- 131

- 22,611
- 8
- 63
- 69
If you want to change whether it highlights the best fitting possibility, use:
Ctrl + Alt + Space

- 30,738
- 21
- 105
- 131

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

- 12,937
- 5
- 50
- 82
In Visual Studio 2015 this shortcut opens a preview of the definition which even works through typedefs and #defines.
Ctrl + , (comma)

- 30,738
- 21
- 105
- 131

- 5,104
- 3
- 34
- 51
On Visual Studio Community 7.5.3 on Mac this works for me:
Ctrl + Space

- 30,738
- 21
- 105
- 131

- 316
- 2
- 7
The shortcut to bring up the IntelliSense box is called Edit.ListMembers
. It defaults to:
Ctrl + J
The shortcut to automatically select the most likely option is Edit.CompleteWord
. It defaults to:
Ctrl + Space

- 85
- 5
You have to have your cursor on the code which has a red line under it. Now press :
Ctrl + K + I