Share via

VS 2022 Not showing red squiggles and no intellisense anymore, at least, underUnity

vanderghast 1 Reputation point
2026-05-28T10:37:54.7066667+00:00

Using Visual Studio 2022, I have lost the squiggles red wavy line when there is a typo error (faster to spot it than to move to the console to see error messages) and I have also lost intellisence allowing us to "discover" the methods and the signatures of a given type following the "dot" after writing the variable name. Sure, I "won" the various [tab] suggestion from AI, but those are less informative than intellisense ( AI targetting a, one, solution, intellisense targetting multiple, many, possibilities), not saying that AI is sometimes just doing too many things at too many places when I "tab" for a red or a green or a whatever-I-am-not-sure-what-tab-will-do, which I like when it is about a comment, but not when it is a piece of code.
Anyhow, the proposed solutions to the problem don't really apply since I am under Unity and the required options to display the wiggly-red-line is effectively checked.
Other suggestion to get back the wiggles AND intellisense? (intellisense, that word still exists? I got the wiggly red line right now, here ! ? </ironic> )

Developer technologies | Visual Studio | Debugging

1 answer

Sort by: Most helpful
  1. AI answer

    2026-05-28T10:38:09.6566667+00:00

    In Visual Studio, red squiggles and IntelliSense come from the code editor’s analyzer and IntelliSense engine. When they disappear, the issue is usually with editor features being disabled or overridden.

    Try these steps in Visual Studio 2022 (even when working with Unity projects):

    1. Verify squiggles and Quick Actions are enabled
      • Squiggles (wavy underlines) show errors and warnings as you type, and a light bulb offers Quick Actions to fix them.
      • In Visual Studio, open Tools > Options.
      • Go to Text Editor > C# (and All Languages if needed) and ensure options related to:
        • Error reporting / “Underline errors in the editor”
        • “Show live semantic errors” are enabled.
      • Squiggles should appear again for syntax and compiler errors, and the light bulb / screwdriver icons should show Quick Actions such as Add using or Generate method.
    2. Use Quick Actions to confirm the analyzer is working
      • Intentionally reference an unresolved type (for example, XmlReader in a C# file) so that a red squiggle appears.
      • Place the caret on the type and press Ctrl+Period or click the light bulb.
      • If the analyzer is working, options such as using System.Xml; or Generate class will appear and applying them should remove the red squiggle.
    3. Check for extensions overriding IntelliSense
      • IntelliCode and IntelliSense can be hidden or altered by extensions that replace the completion UI.
      • Disable any completion/AI/autocomplete extensions temporarily:
        • Go to Extensions > Manage Extensions.
        • Disable extensions that provide their own completion lists or AI suggestions.
        • Restart Visual Studio and test IntelliSense again.
      • If IntelliSense suggestions (member lists after .) and starred IntelliCode items reappear, re‑enable extensions one by one to find the culprit.
    4. Confirm IntelliSense features are active
      • IntelliSense should show member lists, parameter info, and automatic code generation options (like Generate method, Generate property, Generate class, Add using).
      • In Tools > Options > Text Editor > C#, ensure IntelliSense features are turned on (completion lists, parameter info, etc.).
      • In the editor, type variableName. and check that a member list appears; if it does, IntelliSense is functioning.
    5. If IntelliCode is specifically missing
      • If IntelliCode “starred” suggestions are not visible even when IntelliSense lists appear, an extension may be overriding the UI.
      • After disabling such extensions, if IntelliCode still does not show, use Help > Send Feedback > Report a Problem and mention IntelliCode.

    These steps restore the standard Visual Studio behavior: red/green squiggles for errors and warnings, Quick Actions via the light bulb, and IntelliSense/IntelliCode completion lists and automatic code generation, even when editing Unity projects.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.