How to disable the "Click a tab to replace the selected range" message in ReSharper 8?

When I write a method call and open the brackets, and then I get a tooltip for the method parameters. It's great.

Then I press Ctrl + Space to get a list of possible options. The tooltip with the method parameters moves up, and the IntelliSence tooltip opens. This is also wonderful. However, the parameters are hidden by an uninformative message: "Click the tab to replace the selected range." See the picture below:

Click a tab to replace the selected range.

This is really annoying. How to disable it?

+6
source share
1 answer

I changed the design of Resharper and found a configuration setting that controls the display of the "Click a tab to replace the selected range" tooltip. This parameter:

<s:Boolean x:Key="/Default/Housekeeping/IntellisenseHousekeeping/HintUsed/@EntryValue">True</s:Boolean> 

You can add this line to any configuration file, and Resharper will disable the tooltip. I use the configuration file "This computer":

%AppData%\JetBrains\ReSharper\vAny\GlobalSettingsStorage.DotSettings

+5
source

Source: https://habr.com/ru/post/957280/


All Articles