Reputation: 43
Could you provide me help to enable IntelliSense suggestions and autocomplete in Visual studio code 1.30.1? I have installed visual studio Intellicode and path intellisense extensions. Tried:
"editor.quickSuggestions": {
"other": true,
"comments": true,
"strings": true
},
"editor.suggestSelection": "first"
In settings.json file, no success
For autocomplete feature installed All autocomplete, but again no success with autocomplete in ‘if’, ‘for’ or anything else. Is it actually possible Intellisense and autocomplete in Visual studio code to work like in Visual studio community?
Upvotes: 1
Views: 1677
Reputation: 27944
The autocomplete works on type the models have been trained for (common opensource libraries). The most common type you should see recommendations for are strings and data structure types. Being in or out side a control statement does not matter for the recommendations.
Samples, click on JavaScript for JavaScript sample
If you are still having issues you can report them at: report issue. Provide as much as information possible on what you do and what you expect.
Upvotes: 0