Comment that would ignore other comments.

Feature requests for future versions of Hollywood can be voiced here
Post Reply
Bugala
Posts: 1178
Joined: Sun Feb 14, 2010 7:11 pm

Comment that would ignore other comments.

Post by Bugala »

I am wishing for another comment option that would ignore other comments.

It is quite usual to have a following case:

Code: Select all

linesofcode
lineofcode /* comment */
linesofcode
lineofcode /*comment */
linesofcode
lineofcode /*comment*/
linesofcode
Then what happens is that i want to comment all these lines out temporarily, and at this point it would be great to be able to:

Code: Select all

 - - comment - - linesofcode
lineofcode /* comment */
linesofcode
lineofcode /*comment */
linesofcode
lineofcode /*comment*/
linesofcode  - - endcomment - -
and that would be it, instead of how it is now:

Code: Select all

/* linesofcode
lineofcode /* comment */
/*linesofcode
lineofcode /*comment */
/*linesofcode
lineofcode /*comment*/
/*linesofcode*/
Post Reply