Wish Add IDE support for variable documentation

Sandman

Expert
Licensed User
Longtime User
If we have a sub like this...

B4X:
' This is a very important sub
Public Sub showingOff
    Msgbox("Never use Msgbox", "Important message")
End Sub

...we get very nice docs when hovering that sub name in other code:
upload_2018-6-8_20-52-42.png


However, if we do the same with a variable:
B4X:
' This timer is very important because X, Y and Z
Private theTimer As Timer

...we don't get anything more than the type and scope. It sure would be nice if the variable docs also could be visible.
 
Top