views:

410

answers:

3

Hi,

There's something really annoying in Visual Studio : where I expand or collapse a method or code region, this action is pushed on the undo stack. So if I edit some code in a method, then collapse that method, and then want to undo my change, I have to undo twice : once for the collapse action, and once for the change in code. This can be VERY confusing if you expanded or collapsed several things after editing the code, the editor keeps jumping to different places and you don't know whether your changes have been undone or not...

So my question is : is it possible to disable that behavior ? i.e., that only changes in code are taken into account in the undo stack ?

PS: I'm using Visual Studio 2008

A: 

The best solution I can propose is to disable outlining using CTRL+M, then CTRL+P.

Cedrik
No, this is not an option... I really like the code outlining feature, I just don't want it to be part of the undo stack
Thomas Levesque
+1  A: 

I don't believe there is a way to disable this behavior.

As alternatives, the undo and redo toolbar icons have history dropdowns that allow you to visually see a summary of what the recent changes were that you would be undoing or redoing. That can sometimes help to ensure you're undoing (or redoing) what you're expecting.

Since that isn't always enough to know exactly what the changes are (the undo history only displays a summary), the solution I occasionally use to address this is to combine undo (ctrl-z), redo (ctrl-y), and undo again. The first undo moves to where the change happened (and undoes that change). The redo will undo the undo (which essentially repeats the last change made). And the last undo will perform the undo again with the window scrolled to the location where I can actually see the undo happening and can confirm whether that's the change I was expecting to undo. It's not very efficient, but it can be very effective to ensure the code is in state that's really expected.

iammichael
Indeed I could use the history dropdowns... I'm not so sure about your solution with shortcut keys however, it's not very convenient ;)
Thomas Levesque
+1  A: 

First, it seems that not all outlining operations are recorded in the undo/redo stack.

  • Toggle Outlining Expansion (CTRL+M/CTRL+M) is recorded in the stack
  • Toggle All Outlining (CTRL+M/CTRL+L) is recorded in the stack
  • Collapse to definitions (CTRL+M/CTRL+O) is NOT recorded in the stack

So, as far as I know, it is not possible to avoid the recording of Toggle operations in the undo/redo stack in Visual Studio 2008.

The only option you have it to enable/disable outlining for each source type. For C#, outlining can be enabled/disabled in Tools > Options > Text Editor > C# > Advanced with the "Enter outlining mode when files open" checkbox.

Laurent Etiemble
Like I said to Cedrik, I don't want to disable outlining... I like it and want to keep it
Thomas Levesque
Then, you will have to deal with undo/redo.
Laurent Etiemble