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:
- Automatic insertion of close braces.
- 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 (!).
- 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?