ReSharper IntelliSense does not show items description tooltip
Default native Visual Studio IntelliSense shows method summary tooltips, as ReSharper IntelliSense does not have this option turned on.
If you wish to see this information when using ReSharper IntelliSense, please check the following checkboxes:
- ReSharper | Options | Environment | IntelliSense | Completion Appearance: Show member signatures
- ReSharper | Options | Environment | IntelliSense | Completion Appearance: Show summary
Please sign in to leave a comment.
I have these items checked, and I am able to see summaries. My problem is that I can only see a summary for the top item in the list or if I use the up/down arrow keys. What I'd like to be able to do is scroll down the list and hover any item to see its summary. (Or it could work like native Visual Studio intellisense, where you single-click to see the summary and double click to execute the autocomplete.)
I have the checkboxes checked but still don't see a balloon with "I want to see this"
/**
* I want to see this
*/
function go(x) {
alert('go');
}
this.g|