简体   繁体   中英

Visual Studio Community 2015 Auto Complete Options

So, in visual studio 2015 when I am typing, options come up for auto complete. Problem is, when none of those options match, and I type dot ('.'), it auto completes to the first option. I end up having to press ESC to go back which is actually annoying.

For instance, If I type:

Sys

Options come up that include:

  • System
  • SystemException
  • OperatingSystem

If I actually have my own class called Sys, and I want to reference its members such as Sys.getId() or so, when I type:

Sys.

Visual studio actually inserts,

System.

I'd like to change it so it doesn't complete on the dot (.), but only autocompletes on space or tab key. Is that possible? because this is annoying as hell.

Try this:

Edit -> Intellisense -> Toggle Completion Mode 

or

Ctrl + Alt + Space

Now I can press tab to select the recommended member ( System ), but if I need Sys.Test I can just do Sys and then .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM