Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VS2013 intellisense code completion

Tags:

First I thought it was a problem of VS2013 RC/beta but now I installed VS2013 RTM and still have the same problem: code completion does only open after I execute it manually by strg+space. How can I turn on auto open the windows after typed e.g. a point?

like image 654
daniel Avatar asked Oct 17 '13 22:10

daniel


People also ask

How do I get the autocomplete code in Visual Studio?

You can trigger IntelliSense in any editor window by typing Ctrl+Space or by typing a trigger character (such as the dot character (.) in JavaScript).

What is code completion in IDE?

Intelligent code completion is a context-aware code completion feature in some programming environments that speeds up the process of coding applications by reducing typos and other common mistakes.

How do you toggle IntelliSense?

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

Why is VS Code not working IntelliSense?

If IntelliSense is not working as it should on your Windows 11/10 PC, you can try restarting VS Code and this should solve the issue. Restarting the program can be really effective and time saving in some cases. If the issue persists, you can try restarting your computer altogether.


1 Answers

Be sure that your IntelliSense is activated enter image description here

Tools > Options > Text Editor > C# > Statement completion

Then, be sure Auto list members is checked and Parameter Information.

like image 75
Patrick Desjardins Avatar answered Sep 23 '22 03:09

Patrick Desjardins