Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable “Press tab to replace highlighted range” message in ReSharper 8?

When I write a method call and open bracket, and then get a tooltip to parameters of method. It's great.

Then I press Ctrl + Space to get a list of possible parameters. The tooltip with method parameters is moved up and an IntelliSence hint is opened down. This is also fine. However, the parameters are covered up by an uninformative message: "Press tab to replace highlighted range". See a figure below:

“Press tab to replace highlighted range” message

It's really annoying. How can I disable it?

like image 315
Mikhail Shcherbakov Avatar asked Nov 03 '13 12:11

Mikhail Shcherbakov


1 Answers

I reverse engineered the Resharper and found a configuration setting that manages a display of “Press tab to replace highlighted range” tooltip. This parameter is:

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

You could add this line in any configuration file and Resharper will disable the tooltip. I use the “This computer” configuration file:

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

like image 66
Mikhail Shcherbakov Avatar answered Oct 23 '22 21:10

Mikhail Shcherbakov