skip to Main Content

How can the following little tooltip be disabled (hidden)?

enter image description here

Or

enter image description here

I know that I can accept with "Tab Tab" or get the next suggestion with Alt+., I don’t want that VS shows me that every time (because it overlaps the previous two code lines).

Notes:

  • I don’t want to disable the suggestion itself, I just don’t want to see the tooltip.
  • I’m using Visual Studio 2022, 17.4.2 (Enterprise).
  • I’m using C#

2

Answers


  1. Is your computer using windows 11?

    This tooltip is displayed on my colleague’s computer:

    enter image description here

    But it doesn’t show up on my computer:

    enter image description here

    The only difference is that he is using windows11 and I am using windows10.

    I think it’s a problem in visual studio. Maybe you can report this problem on DC.

    Login or Signup to reply.
  2. The feature is called IntelliCode (don’t confuse with Intellisense).
    In case someone is looking for a way to disable it altogether:

    • Search for it in Tools -> Options

    • Disable "C# suggestions"

      enter image description here

    If you want to still keep it but stop interfering with the tab actions you are used to, there is a way to assign "accept" to right arrow:

    enter image description here

    enter image description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search