1

I've recently switched from Java programming in Eclipse to C++ programming in Visual Studio 2010. Visual Studio is a fantastic IDE overall but I found myself seriously missing three features from Eclipse:

  1. Automatic insertion of close braces.
  2. Automatic tab alignment of pasted code. Consider pasting code with 2 indents into a section with 3 indents. In Eclipse, the pasted code adopts the 3 indents of its surroundings; in Visual Studio, the first line has 5 indents and the remaining lines have 2 indents (!).
  3. Display of errors, warnings and TODOs on the vertical ruler at the right, line-by-line (e.g. see this picture).

Microsoft's Productivity Power Tools extension includes Auto Brace Completion, as does this stand-alone extension. Does anyone know how to get the functionality of 2 and 3, or something similar?

1''
  • 26,823
  • 32
  • 143
  • 200

1 Answers1

1

AStyle addon that works with C++ also take a look at Visual Assist, but it's not free

Sergi0
  • 1,084
  • 14
  • 28