When I write code I tend to write the flow logic before the actual subs to handle the logic
for example
When I get to write the subs, there is no autocompletion for the names I have used.
If you write the subs first then you get autocomplete for the names. ( I don't think many people write the sub's first, as this means you jump up and down the code inserting the sub calls).
Although the names are red as in undefined, could these be added to the autocomplete list so that when you do write the sub, you can just select the name from the list.
for example
B4X:
...
initializeBoard(w,h)
loadImages()
...
When I get to write the subs, there is no autocompletion for the names I have used.
If you write the subs first then you get autocomplete for the names. ( I don't think many people write the sub's first, as this means you jump up and down the code inserting the sub calls).
Although the names are red as in undefined, could these be added to the autocomplete list so that when you do write the sub, you can just select the name from the list.