Wish Add Intellisense for Sub Parameters, including custom types

JohnC

Expert
Licensed User
Longtime User
If, as I am writing a line of code that calls a routine, it would be cool if the IDE could auto-provide a list of available values for the parameter I am currently entering.

For example, if I have a Sub like this:

B4X:
Sub Test(DoIt as Boolean)
   ...
End Sub

Then when I am typing "Test(", the IDE would pop-up a dropdown list with "TRUE" and "FALSE" as items in it that I can select instead of having spell them out (intellisense).

It would also be cool if this feature could also support custom type parameters like this:

B4X:
Sub Process_Globals
    Type EventType(eventEvent As Int, eventError As Int)
    Public EventTypes As EventType
    EventTypes.eventEvent = 0: EventTypes.eventError = 1
End Sub

Sub SaveEvent(EType As EventType, EventText As String)
   ....
End Sub

So, when I am entering a line of code:

B4X:
SaveEvent(

After I tap the "(", it would show "EventTypes.eventEvent" and "EventTypes.eventError" as dropdown list items to select.
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…