The facility to mark blocks of lines as comments would be handy; I am thinking of a marker to indicate the start of the block and another to indicate the end of the block of lines.
In C# terms,
- the starting marker is /*
- the end market is */
- the lines in between are treated as inline comments.
Currently, you have to comment blocks by
- either commenting each line manually
- or highlighting the block of lines and pressing Ctrl + / (Ctrl + Shift + / to remove comment).
The reason for this request is this: if you are writing multi-line inline documentation within a function, the leading ⍝ becomes intrusive.
I concede that this may not be that straightforward in a line based language.