Reputation: 3436
Recently when I'm launching autocomplete (a.k.a. in VS Code Intellisense
) via Ctrl + Space my suggestion list is presented from the very bottom of list (note the slider position):
Usually at this place absolutely non-matching properties are placed so I have not much help from suggestions in such case. VS Code has good knowledge on shape and form of types I'm working with (it's written in TypeScript
) so it's expected to present known properties as first (at top of suggestion list)
Does anyone know hot to fix such issue?
This seems to occur at random places, in approximately 70% of hits it's presenting correct list (starting from top)
Upvotes: 17
Views: 2723
Reputation: 2252
Configuring the settings should solve the issue:
{
"editor.suggestSelection": "first",
"editor.snippetSuggestions": "top"
}
More about how to customize IntelliSense in Visual Studio Code: here
Upvotes: 27