Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable Common Tab in VB.NET Intellisense

When working in a VB.NET project in Visual Studio (2008 specifically, but hopefully the answer applies to any version) is it possible to have intellisense/auto-complete only show the "All" tab instead of the "Common"/"All" tab? Or alternatively, have it default to the "All" tab.

Being predominately a C# developer having the editor try to be smarter than me by telling me what it thinks I should be looking for is more of an annoyance than anything.

NOTE: I do have ReSharper and DevExpress installed, so if the solution only works with one of those tools it is available.

like image 924
Agent_9191 Avatar asked Mar 06 '10 19:03

Agent_9191


People also ask

How do I disable IntelliSense in Visual Studio?

You can enable or disable particular IntelliSense features in the Options dialog box, under Text Editor > C/C++ > Advanced.

How do you toggle IntelliSense?

To toggle between completion mode and suggestion mode, press Ctrl+Alt+Space, or choose Edit > IntelliSense > Toggle Completion Mode.

How do I enable IntelliSense in Visual Studio?

To access this options page, choose Tools > Options, and then choose Text Editor > C# > IntelliSense.


1 Answers

I am afraid I don't know of a way to default to the All tab. I have grown accustomed to using keyboard shortcuts to toggle between the two, to a degree where it doesn't bother me anymore.

I know its not what you are looking for, but maybe it can help you anyway :)

[ALT]+[.] Go to All tab

[ALT]+[,] Go to Common tab

like image 150
Luhmann Avatar answered Oct 18 '22 20:10

Luhmann