Doug Sisco
Doug Sisco

Reputation: 161

Visual Studio Community 2022 (64-bit) - How to disable pop-ups boxes

I have seen this question asked many times, however the answers do not seem to apply to Visual Studio Community 2022 (64-bit): how can I disable the pop-up boxes that appear whenever you hover over variables or functions? This functionality is enabled by default and is incredibly annoying.

Note that I am not referring to auto-completion, just the pop-ups when hovering.

In the hours I have spent researching this problem I have seen references to File/Preferences, the '%APPDATA%\Code\User\settings.json' file and many other suggestions, but none seem to apply to this version of Studio.

I am coding in C# however I believe this is a problem with the editor in all languages.

Upvotes: 6

Views: 2603

Answers (2)

GQLIATH
GQLIATH

Reputation: 1

For mac;

  1. Click to "VİSUAL STUDIO" (on top left corner),
  2. Click "Extensions",
  3. Click to "Installed" button on top middle,
  4. Disable z.Ned Core Debugger"

Upvotes: 0

Joe
Joe

Reputation: 6796

Are you talking about Tooltips? There is no standard way in the UI, but Mads Kristiansen did make an extension to do this. The bad news is he does not appear to have updated it for VS 2022. The good news is that the code is available online:

Upvotes: 3

Related Questions