Toggle Comments in Feature Requests
|
|
|
|
| Status: |
Open
Issue hasn't been assigned a status value.
|
|
|
I would like to see a new command added to the DM code editor which toggles between hiding or showing code comments. If possible, allow for the distinction between hiding single line or multi-line comments. The two following sections of code are identical, the only difference is whether or not Dream Maker is set to display code comments.
Comments Enabled
mob/verb/Say(var/msg as text) world<<"[src]: [msg]"
|
Comments Disabled
mob/verb/Say(var/msg as text) world<<"[src]: [msg]"
|
|
Also, couldn't you achieve a similar effect (although, a little silly) by setting your comment color to white (or whatever background color you're using).