Bugfix
Detail
#27787
Missing context suggestions for TL script functions with underscore in the name
When you start typing in a TL script editor, a list of all TL script functions starting with the one you typed appears as context help. If you continue typing, the list is further restricted to the remaining applicable functions.
However, if you define your own functions that have an underscore (_) in their name (e.g. get_myFoo, get_myBar), the context help only works up to the underscore.
In the example, the following help would be offered:
get --> get_myFoo, get_myBar, get, getKey, getValue get_ --> get_myFoo, get_myBar get_my --> (No suggestions)
Here you would expect the suggestions get_myFoo , get_myBar for get_my...
Test
Define TLScript function with a _ and check whether the completion is displayed.