Comment helper macros (3)
1) I like the C comment style where the comments are vertically aligned to the right of the source code.
for(i=0;i<1000;i++) // search loop
{
if(c[i]==0) break; // empty space found ? done
if(c[i]==1) c[i]=2; // replace 1 with 2
}
If you want to use this comment style, you spend a lot of time placing
the comments so that they align just right. And if you change one line of code,
you always have to re-adjust the comment so that it still aligns
properly.
Therefore, my first macro works by executing it while the cursor is on the line where the comment will be added or adjusted.
You can even select more than one line of source code when executing the macro. Every line will get a new comment sign or the existing comments will be re-adjusted (if needed).
The biggest advantage this macro has over similar macros presented on Codeguru, is that it will work with lines of code that already contain comments.
2) The second macro does just the opposite: it removes single-line comments (not only the comment signs, but also all text after the comment characters (//) If you are using the "auto-comment" feature of the Visual Studio and you are looking for an easy way to remove some of the useless comments (or if you want to remove your own useless comments :), just place the cursor on the offending line(s) of code and execute this macro
3) I HATE TABS! The first thing I did in Visual Studio was to disable the tab-chars. It4s a lot easier to navigate in the source when spaces are used instead.
But if you are using the Wizard stuff, tabs will be inserted in the generated code. So my last macro simply removes all tabs from the source code and replaces them with spaces.
NOTE: It should be noted that my "comment" macros also hate tabs. Therefore, you will need to run this macro first before using my comment macros.
Date Last Updated: February 3, 1999

Comments
Improvements
Posted by Pelle1911 on 06/01/2005 06:16amHi there, I looked at your macros and modified them. Actually I do believe the the new version is superior to the old version and would like to share that stuff. However, the base of it is still this work so that I don't want to post it as my own work. Any comments? Regards, C.
ReplyYou are very penible, I think all programmers
Posted by Legacy on 10/11/1999 12:00amOriginally posted by: pat
ReplySimple Untab selection before comments
Posted by Legacy on 03/16/1999 12:00amOriginally posted by: Oscar
Just put this as a first line after the the sub comment
ActiveDocument.Selection.Untabify
and everything will be fine
oscar
Reply