michal krzych
michal krzych

Reputation: 429

How to reset foreach autocomplete behavior in ReSharper

How to reset the behavior back to original in ReSharper? I have no idea how it got broken (maybe a bug since the ReSharper update) but normally after typing foreach hitting the TAB and typing in list and hitting TAB again I would expect

foreach(var VARIABLE in list)
{

}

but instead this happens

foreach (var VARIABLE in list         {

}

This doesn't happen with ReSharper disabled. My current version is 2017.2 Ultimate.

If I could get away without resetting all the ReSharper settings that would have been nice.

Upvotes: 2

Views: 564

Answers (1)

Alexander Kurakin
Alexander Kurakin

Reputation: 13523

It is a known issue for R# 2017.2 release.

Update: this issue has been fixed in R# 2017.2.1 release

Upvotes: 2

Related Questions