Brett Ryan
Brett Ryan

Reputation: 28255

How do I turn off code tooltips in Visual Studio 2010?

It seems wherever my mouse is in my code window it will bring up tooltip information about what's under it, this I find very distracting and quite annoying. Can anyone tell me how to turn off the tooltips in the editor?

EDIT: Clarification, for C#

Upvotes: 11

Views: 6960

Answers (1)

Noah Richards
Noah Richards

Reputation: 6867

I created an extension that disables quick info for C#: DisableQuickInfo.vsix.

The source is pretty simple, just a quick info source that immediately dismisses the session it gets. You can modify it pretty easily to apply to any language, if you have the SDK installed. Let me know if you want help with that.


Original answer, for C/C++:

What language? For C/C++, for example, you'd set Tools->Options->Text Editor->C/C++->Advanced->Auto Quick Info to False. I think it's one of the few languages you can disable it for.

(It's called "Quick Info", for future reference)

Upvotes: 16

Related Questions