Is there a way to avoid closing the following parentheses:

String.Format(), or Console.WriteLine() automatically?

Sometimes is this is annoying and unnecessary, and I end up pressing Delete to remove it.

I tried disabling Auto-insert pair brackets, pharentheses and quotes and Auto-insert closing brace and it is still not working...

link|improve this question

1  
I felt annoying at the start but now I am so used to the auto close that I never end up using the close braces! – Vinod R Mar 5 '11 at 3:34
@Vinod R In fact, I enjoy it, but sometimes it just crashes the code (in more than one scenario) – Oscar Mederos Mar 5 '11 at 3:38
I'm surprised it's not working for you. I just tried it here. Can you elaborate on precisely what you do? (Also, 5.1 has been out for some time -- perhaps you're experiencing a bug that has since been fixed? Current version is 5.1.3) – Kirk Woll Mar 5 '11 at 3:43
@Kirk I'm not sure about what I need to elaborate. I turned off those two features, restarted VS and the same parentheses are still being closed. I will take a look at the changelogs at JetBrains site... – Oscar Mederos Mar 5 '11 at 3:52
feedback

1 Answer

The following options should be unchecked/checked in Resharper if you do not want autocomplete feature on parenthesis (all options can be accessed through Visual Studio > ReSharper > Options... > Environment)

To disable parenthesis auto insert in non method calls (as pointed out in the question, you have already disabled it)

  • Editor > Auto-insert pair brackets, pharentheses and quotes (unchecked)
  • Editor > Auto-insert closing brace (unchecked)

To disable parenthesis auto insert in method calls

  • Intellisense > Completion Behavior > Automatically insert parenthesis after completion > Opening only (enabled)

    Automatically insert parenthesis after completion

Tested in Visual Studio 2008 with ReSharper 6.0.

link|improve this answer
This does not work for when i type "new InvalidOperationException" it auto completes with opening and closing parenthesis. Your answer only fixes it for methods not for class constructors or attributes. – JDPeckham Mar 18 at 16:44
@JDPeckham, I have checked the second option in VS2010 + Resharper 6. Works as expected for class constructor calls i.e. inserts the opening braces only. – Devendra D. Chavan Mar 18 at 18:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.