Wish Region of comments

jmon

Well-Known Member
Licensed User
Longtime User
Hello,

It would be a nice feature to have region of comments. Everything in this region would appear as commented:
B4X:
#Comments
To Do:
- Fix this thing
- Do that thing
...
#End Comments

#Comments
This sub does something
Example:
Log(MySub(True))
#End Comments
Sub MySub(Value As Boolean
    '....
End Sub
(Obviously it doesn't show the correct colors on the forum)

Thanks!
 

LucaMs

Expert
Licensed User
Longtime User
You can already use normal Regions made of only comment lines and they are colored.
2.gif




Also, comment lines placed immediately before a routine will be visible as contextual help:
upload_2018-5-10_6-13-21.png





upload_2018-5-10_6-13-40.png





[Hint: do not create so very useful functions :p]
 
Last edited:

jmon

Well-Known Member
Licensed User
Longtime User
Top