I'm looking for a macro that will toggle a comment in COBOL code for every line of selected text. Comments in COBOL are indicated with a star in column 7.
For example, if the following three lines were highlighted:
Upon executing the macro, the text would change to:
Thanks in advance.
For example, if the following three lines were highlighted:
Code: Select all
* commented before
not commented before
some random text
Code: Select all
commented before
* not commented before
* some random text