When using the undo function multiple times, the work flow will be interrupted from time to time because the auto complete box will pop up and escape has to be pressed. I think, it would be more efficient, if the pop up will be blocked while using undo/redo.
Auto case correction (PB is so intelligent, what about making it genious?)
1) In some cases, PB does not correct the upper/lower case correctly, for example when editing variable names. Short variable and procedure names also don't get their correct case, but PB internal names work fine:
Code: Select all
Procedure Min(a,b)
ProcedureReturn ...
EndProcedure
Procedure Mini(a,b)
ProcedureReturn ...
EndProcedure
; all these lines have been entered in lower case, 'min' does not get a upper case 'M'...
a=min(1,2)
a=Mini(1,2)
a=Str(1)
Code: Select all
; let's say, you have this code line...
Debug "I want to have the next PB version and it's IDE even more usable..."
; and want to change it to this...
a$="would like"
Debug "I "+a$+" to have the next PB version and it's IDE even more usable..."