Visual Studio C# IntelliSense not automatically displaying

In prose, in case you can’t see the above image: Open Tools > Options > Text Editor. If you’re only having this issue with one language, find that language; if it’s for everything, click “All Languages”. Right at the top, there’ll be a few options labeled “Auto list members”, “Hide advanced members”, and “Parameter information”. … Read more

OmniSharp.MSBuild.ProjectManager Attempted to update project that is not loaded:

Solved (cross checked on Ubuntu 16.04 and CentOS 7): In the VS Code menu, go into File / Preferences / Settings. In the “Search settings” window, type omnisharp.path Click on “Edit in settings.json” link. Add (or edit) like this: “omnisharp.path”: “latest” (from: https://github.com/OmniSharp/omnisharp-vscode/issues/2965)

Visual Studio 2015 JSX/ES2015 syntax highlighting

UPDATE (2017-02) Node Tools for Visual Studio (NTVS) has been using the Salsa analysis engine since v1.2 and using NTVS is likely the path of least resistance for JSX support. https://github.com/Microsoft/nodejstools Read (and upvote) this answer for more details: https://stackoverflow.com/a/41996170/9324 ORIGINAL ANSWER I ran into the same issue and found two solutions – one using … Read more

How to disable IntelliSense in VS Code for Markdown?

IntelliSense suggestions in VS Code can be configured globally or per each workspace and as of 1.9 per file-type (language), using the editor.quickSuggestions, editor.acceptSuggestionOnEnter and editor.suggestOnTriggerCharacters settings. // Controls if quick suggestions should show up or not while typing “editor.quickSuggestions”: true, Since VSCode 1.11, the quickSuggestions setting allows more fine-grained control over quick suggestions. However, … Read more

Intellisense doesn’t work for JavaScript in Visual Studio 2012

Kudos to CraigTP Summary: navigate to the [Tools] > [Options] > Text Editor > JavaScript > IntelliSense > References options select Implicit (Web) you can find “~/Scripts/_references.js” (if you want to put it in different place, change it here) go to ~/Scripts and add new item “_references.js” add /// <reference path=”path\jquery-1.7.1.js” /> in “_references.js” or … Read more