I encoded the Mancala game in Java for a college class last spring, and I used the Eclipse IDE to write it. One of the great (and fairly simple) visual aids in Eclipse is that if you select a specific token, say a declared variable, then the IDE will automatically highlight all the other links to that token on your screen. Notepad ++ , my preferred replacement for Notepad, also does this.
Another neat and similar feature in Eclipse was the vertical “error bar” to the right of your code (not sure what to call it). It displays small red squares for all syntax errors in your document, yellow fields for warnings such as “variable declared but not used”, and if you select a word, fields for each occurrence of a word in the document will appear in the panel.
A snapshot of these features in action: 
After half an hour of searching, I decided that Visual Studio could not do it on my own, so my question is: does anyone know any add-ons for 2005 or 2008 that can provide either one of the above functions
The ability to select the current line on which the cursor is on will also be pleasant. I believe the ReSharper add-in can do this, but I would rather use a free add-in rather than buying it.
visual-studio-2008 visual-studio visual-studio-2005
Darren Steinweg Aug 28 '08 at 14:56 2008-08-28 14:56
source share