Visual Studio 2010: Editor stops responding to keyboard

Just encountered the issue in VS 2012, in editing C#. I noticed that the problem had occurred soon after the trial period of Resharper has ended and i inserted a valid license number. It also happened in only some of the source files. The solution: Tools->Options->Resharper: Suspend. Try typing – should work now. Then: Tools->Options->Resharper: … Read more

Completely Disable Formatting and Completion in ReSharper for Visual Studio

Go to ReSharper | Options. Change the following options: On the page Environment | Editor | Behavior: turn off options that starts from “Auto-format” or “Auto-insert”. This won’t disable ReSharper formatting features completely, but at least they won’t be invoked automatically when typing. On the page Intellisense | General: change to “Visual Studio”. Or, if … Read more

How to automatically refresh the SQL Server Management Studio intellisense cache?

I don’t know that there is a way to automatically refresh the cache without manually pressing Ctrl+Shift+R (or equivalent, e.g. the menu). The reason is that when the app talks to the database too much, people complain that it is too chatty (perhaps someone could write a simple add-in that does this – using something … Read more

No IntelliSense for C++/CLI in Visual Studio 2010?

You are correct. Unfortunately it has been dropped. You can check this opened issue on Microsoft’s Connect website. I’ll just quote them for the sake of the answer: Unfortunately in this release we had to cut the intellisense support for C++/CLI due to time constraints. If you want to get some intellisense like quick info … Read more

How to get intellisense in Visual Studio Code for Unity functions names?

Old question, but I had the same problem just recently. There must have been an issue in your Assembly-CSharp.csproj or project-name.sln files. Most likely to be the .csproj file. If you take a look at it, you will see various references to .dll files. You can tell Unity (my version: v2019.2.20f1) to create these for … Read more

Unable to turn off code suggestions in Visual Studio Code

You turned off code completion correctly. But parameter hints are still active. Turn them off by going into the Settings menu, searching for editor.parameterHints.enabled, and un-checking the box. Or put the following entry in your settings.json: “editor.parameterHints.enabled”: false If you ever want to see the parameter hints on-demand, refer to How to trigger parameter hints … Read more