Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the default intellisense shortcut in vs2008?

I'd like to open the intelligence window without typing a character and then backspacing it. I can't seem to remember the shortcut for this. What is it?

like image 453
Dane O'Connor Avatar asked Sep 28 '08 06:09

Dane O'Connor


People also ask

How do I open IntelliSense in Visual Studio?

You can trigger IntelliSense in any editor window by typing Ctrl+Space or by typing a trigger character (such as the dot character (.) in JavaScript).

What does Ctrl S do in Visual Studio?

When I press Ctrl + S in the Visual Studio Code to save file, it removes all the JavaScript formatting or scatters all the code in the file.

Where is the shortcut key in Visual Studio?

By default, your shortcuts are saved in a file in the %USERPROFILE%\Documents\Visual Studio 2019\Settings folder.


1 Answers

Ctrl + Space for normal Intellisense, and Ctrl + Shift + Space for parameter Intellisense (e.g. to see what overloads are available in a method call which you've actually already filled in). I find the latter very handy :)

like image 115
Jon Skeet Avatar answered Sep 24 '22 23:09

Jon Skeet