Admiral Land
Admiral Land

Reputation: 2492

After update Visual Studio IntelliSence works not fine

After update, IntelliSence not focus on values. Can i fix that?

I want, that when i type values - intelli sence focus on it. But now i need to press UpArrowUp to focus on selected value.

itellisence

Upvotes: 0

Views: 54

Answers (1)

LoLance
LoLance

Reputation: 28216

I have tried to reproduce your issue both in VS2017(15.9.17) and VS2019(16.3.9) and when I type the first letter of the value, it always focuses on the selected value. Please refer to the two pictures below:

VS2017

enter image description here

VS2019

enter image description here

>>So I think this issue is more related to VS IDE settings or environment and so on. You can try the following steps to troubleshoot your issue.

Solution

#1.reset your VS environment settings in case the changes to settings cause this behavior by Tools-->Import and Export Settings-->Reset all settings.

#2. try to use devenv /safemode to start your project in case some changes in the update break the extensions which leads to affect intellisense functionality.

#3. try to close your VS instance,delete .vs folder, and then restart your project.I suspect that one possibility is that the update destroys the hidden .vs folder (stored project settings as well as the smart-aware method).

#4. try to recreate a new project and then test with it. If successful, you can try migrating to a new project.

#5. try to do a repair in VS Installer in case the intellisense components are damaged.

Upvotes: 1

Related Questions