I've discovered an extremely weird bug in Simba: if you name a variable as 'i5', you will encounter a strange bug that parameters are no longer automatically displayed when a parenthesis is typed after the function name.
Sounds completely absurd right? See evidence below:

No other variable names have this problem:

Not sure if it's just my Simba behaving so oddly, so try the code below and see if anyone else have this problem.
Simba Code:
program new;
var
i5: Integer;
begin
writeln //now add a '(' to <<<
end.