You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
Tern based parameter suggestions for function calls do not work when a space is between the function name and the opening parenthesis for the call.
Consider the following illustrative file contents:
function test (param) {
return param % 2;
}
test(2);
test(
After the last line, Brackets will accurately display a popup showing "Number param". When changing the last line to test ( no popup will appear, although semantically both lines are equal.
Best,
Jan-Peter
The text was updated successfully, but these errors were encountered:
Tern based parameter suggestions for function calls do not work when a space is between the function name and the opening parenthesis for the call.
Consider the following illustrative file contents:
After the last line, Brackets will accurately display a popup showing "Number param". When changing the last line to
test (
no popup will appear, although semantically both lines are equal.Best,
Jan-Peter
The text was updated successfully, but these errors were encountered: