Jacek
Jacek

Reputation: 12053

Crtl+Shift+Space shortcut in Visual Studio 2015

I started use Visual Studio 2015. In prev version I use Ctrl+Shift+Space shortcut to display Parameter Info, but in current version it not working.

How can I restore it, what is name for this shortcut in keyboardconfiguration?

Upvotes: 3

Views: 2211

Answers (2)

maria
maria

Reputation: 366

I had the same issue, got it working by doing this:

Go to Tools > Options > Text Editor > All Languages > General, Statement Completion check Parameter Information (like most of the options in the General dialog, it was a full black box by default).

Ref: https://msdn.microsoft.com/en-us/library/vstudio/ecfczya1(v=vs.100).aspx

My options

Upvotes: 8

musefan
musefan

Reputation: 48415

It is called Parameter Info, or as it appears in the list: Edit.ParameterInfo

The default shortcut is: Ctrl+K, P

So give that a try. It also binds to Ctrl+Shift+Space in VS 2012/13 as you have mentioned.

It is supposedly supported in VS 2015 too so not sure why it isn't working for you - I seem to recall reading something on SO the other day that was causing shortcut problems, I think it was something to do with keyboard language settings, but I can't seem to find a reference at the moment so don't quote me on that!


For a full list of shortcut keys, see these references: VS 2013, VS 2015

You can search for example "Space" and it's not hard to find the one you wanted.

Upvotes: 4

Related Questions