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
Having an operator name combined with a deref to form a variable name, then enclosed in parentheses, breaks folding, hover info, and in some cases, autocomplete.
In this example, the folding is fine above the breaking line but broken below. Hover info is broken for both functions. Autocomplete seems fine, though in the much larger file I found this in, it's broken, too—which also extends to files that include the broken file.
Edit: In my original case, I can't simply omit the parentheses to avoid the issue because it's a parameter to a function call.
/**
* Function one.
* @return {string}
**/
IsTest1() {
Return 'one'
}
OutputDebug IsTest1() ; <- Hover info for user functions doesn't work.
name := 'Test2'
result := (Is%name%()) ; <- Breaking line.
OutputDebug result
/**
* Function two.
* @return {string}
**/
IsTest2() {
Return 'two'
}
The text was updated successfully, but these errors were encountered:
Having an operator name combined with a deref to form a variable name, then enclosed in parentheses, breaks folding, hover info, and in some cases, autocomplete.
In this example, the folding is fine above the breaking line but broken below. Hover info is broken for both functions. Autocomplete seems fine, though in the much larger file I found this in, it's broken, too—which also extends to files that include the broken file.
Edit: In my original case, I can't simply omit the parentheses to avoid the issue because it's a parameter to a function call.
The text was updated successfully, but these errors were encountered: