ZiGiUs
ZiGiUs

Reputation: 404

visual studio keyboard shortcut for error description

So i have the following c# code snippet:

var accountModel = new AccountModel
{
    Email = "[email protected]"
}

If you notice carefully you will notice i am missing " ; "

Here is what happens when i hover over the little red squiggly line:

enter image description here

My question is: How can i show the " ; expected " by using the keyboard and without hovering over the squiggly line with the cursor?

Thanks!

Upvotes: 12

Views: 1256

Answers (2)

Julius Depulla
Julius Depulla

Reputation: 1633

Visual Studio 2015

Ctrl + K, Ctrl + I

Hold down Windows Ctrl Key, keypress K and then keypress I

Upvotes: 21

C-Pound Guru
C-Pound Guru

Reputation: 16368

You can hit CTRL\ and the E to view the Error List window (default out-of-the-box keyboard config).

I don't think there's a way to show the tooltip without the mousepointer.

Upvotes: 2

Related Questions