Disable Resharper function parameter tool tips?
Hello there!
Apologies if this has been asked before. I looked extensively, but could not find an answer.
I've just started using VS and UE5 (about a month) and I'm currently using a trial version of Resharper.
It's pretty awesome, but one thing I find really irritating is the parameter tool tip when I hover over a function.
I can't quite make sense of it (yet). Is there a way to turn it off? I tried all kind of options and read through the documentation, but can't find an option to go back to the original VS tool tips.
Any help would be appreciated.
Thank you very much!
Visual studio tool tip. Shows return type, input argument type.
Resharper tool tip. Can't see return type? Also don't quite understand the argument list to be honest.
Why is it showing TVector<T> ? Template presumably?
Please sign in to leave a comment.
Hello,
You need to uncheck “Replace Visual Studio tooltips for C++”:
Unreal Engine defines FVector as an instantiation of the template class TVector:
using FVector = UE::Math::TVector<double>;
In you example R# shows the original function template in the TVector class in the tooltip (so the return type is T). VS shows the instantiation of the function from FVector.
Thanks!
Yay, awesome, finally. Thank you very much, Igor!