We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If a C function is declared like:
struct point { int x; int y; }; int foo(struct point p) { return p.x + p.y; }
ts-docstr-at-point will fail with the error:
ts-docstr-at-point
user-error: Multiple declarations are invalid, 2.
user-error: Multiple declarations are invalid, 2
I think this is triggered by the use of the struct keyword, as a basic or typedef name won't cause this issue.
struct
The text was updated successfully, but these errors were encountered:
Ah, yes. You probably right. struct is caught as the declarations...
This might be hard to solve. 🤔
Sorry, something went wrong.
No branches or pull requests
If a C function is declared like:
ts-docstr-at-point
will fail with the error:user-error: Multiple declarations are invalid, 2
.I think this is triggered by the use of the
struct
keyword, as a basic or typedef name won't cause this issue.The text was updated successfully, but these errors were encountered: