Collapse ALL #region in Visual Studio 2012

c#, ide, resharper, visual-studio-2012

Solution

ctrl+m, ctrl+s will collapse the current region. You can select multiple regions manually and collapse them that way.

Since the command "Collapse all open region" doesn't exist, you could always try to create a new one; In that case, check out this post: How to add commands to Visual Studio 2012?

Problem

First of all, no CTRL+M, CTRL+O is not the answer. For me, this is collapsing #Region, ///Comments, and Methods and I hate that. I'd like to collapse/expand ONLY `#region` sections. I am using Visual Studio 2012 and Resharper.

Original source

Related problems