I have the following selective problem with VS 2019 and IntelliSense.
When I start typing a class name which's namespace is not imported yet, IntelliSense suggests it in the Autocomplete column.
Once I press tab instead of completing the name and importing the using directives it autocompletes the whole path e.g.:
Typing 'UserView...' -> App.Web.Areas.Users.ViewModels.UserViewModel
instead of importing -> using App.Web.Areas.Users.ViewModels; and completing the typing to just UserViewModel
But if I write the whole class name and then press Ctrl + ., then IntelliSense imports the using directive.
Do someone know which setting triggers this behaviour?
