Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

If I turn off ReSharper 5's IntelliSense, what am I missing?

During my trial of ReSharper 5, I noticed its version of IntelliSense falls behind Visual Studio 2010's in three ways that were key to me:

  1. ReSharper doesn't support IntelliSense in the "QuickWatch..." debugger utility.
  2. ReSharper's IntelliSense seems to break down for me in .aspx files between the <%= %> tags.
  3. I couldn't find a way to get a listing of properties within an object initializer block. (VS does this if you hit the space key.)

Thankfully ReSharper lets you use Visual Studio IntelliSense alongside its other great features. Am I missing out on anything great by not using ReSharper's IntelliSense?

like image 228
user403830 Avatar asked Aug 30 '10 20:08

user403830


2 Answers

Well you're losing quite a bit. Here are some quick facts about ReSharper code completion: http://www.jetbrains.com/resharper/webhelp/Coding_Assistance__Code_Completion.html

Smart Completion (Ctrl+Shift+Space in IntelliJ IDEA keymap) is especially useful because in common scenarios it gives you a narrow selection of symbols that you most likely want to complete, and in some cases acts as a shortcut to code generation features

By the way, Smart Completion is the kind of completion that you should use with object initializers: www.jetbrains.com/resharper/webhelp/Coding_Assistance__Code_Completion__Smart.html#object_initializers

As for completion within the <%= %> pair, this should work fine. Please let us know what exactly went wrong by submitting an issue to youtrack.jetbrains.net/issues/RSRP Thanks!

P.S. I work at JetBrains

like image 167
Jura Gorohovsky Avatar answered Sep 29 '22 13:09

Jura Gorohovsky


A five minute comparison I'd say that ReSharper's gives you a bit of help in the typing.

So if you have a method that's A(int a, int b) and you hit ctrl+space when you select A it will add (), will place you in the middle of the brackets and will show you the information about the method. Other than that you're probably not missing much.

For me that is quite helpful, but if you're having trouble doing ASP.NET and those are known bugs / limitations its always best to pick the best tool for the job.

like image 38
Nuno Ramiro Avatar answered Sep 29 '22 11:09

Nuno Ramiro