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 Oct 24, 2023. It is now read-only.
With C Improved, the function name bad does not appear in Go To Symbol (Cmd+R). Here's a minimal case:
voidgood() {
}
voidbad
()
{}
voidgood2(){}
This ends up breaking the indexing, so that "Go to definition" does not work for functions whose signatures are formatted this way.
You can see in the screenshot that bad() doesn't show up, when using C Improved syntax.
Using the default C syntax, everything works as expected:
The text was updated successfully, but these errors were encountered:
zachriggle
changed the title
Failure to parse syntax correctly when function name and open-paren are separated by a colon
Failure to parse syntax correctly when function name and open-paren are separated by a newline
Sep 22, 2020
With C Improved, the function name
bad
does not appear in Go To Symbol (Cmd+R). Here's a minimal case:This ends up breaking the indexing, so that "Go to definition" does not work for functions whose signatures are formatted this way.
You can see in the screenshot that bad() doesn't show up, when using C Improved syntax.
Using the default C syntax, everything works as expected:
The text was updated successfully, but these errors were encountered: