Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I make the Enter key on intellisense when typeing in VB react the same way as in C# in Visual Studio?

I'm using Visual Studio 2008 and I'm used to C# where when Intellisense pops up, I select what I want by hitting enter and it doesn't skip down to the next line. In VB when I hit the enter on intellisense, I jump to the next line. Does anyone know where the setting for this intellisense option might be?

like image 406
Paul Mendoza Avatar asked Jan 06 '09 18:01

Paul Mendoza


People also ask

How do I change IntelliSense mode?

Your compiler path and IntelliSense mode configuration are stored in your project's c_cpp_properties. json file. Edit these settings by selecting C/C++: Edit Configurations (UI) from the Command Palette. Under Compiler path, enter the path to the compiler compatible with your target architecture.

What is IntelliSense what are the option inside IntelliSense?

IntelliSense is a code-completion aid that includes a number of features: List Members, Parameter Info, Quick Info, and Complete Word. These features help you to learn more about the code you're using, keep track of the parameters you're typing, and add calls to properties and methods with only a few keystrokes.


2 Answers

Hitting the SPACEBAR or TAB key in VB does the same thing that ENTER does in C#.

like image 68
Chris Allwein Avatar answered Oct 18 '22 10:10

Chris Allwein


I know that this doesn't really answer your question, but intellisense is designed to work so that you just push the "next" character to choose the highlighted item (such as open parenthesis, period, semi-colon, etc).

like image 35
user19371 Avatar answered Oct 18 '22 10:10

user19371