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
Does Erlang LS support parse transforms such as exprecs of the parse_trans library?
When I try to find completions in Zed using the Erlang LS extension, it does not suggest the generated functions:
However, erl is fully capable of finding them:
erl
Just trying to understand if this is a bug, a limitation, or a misconfiguration perhaps? Here is the source code I'm trying this with:
-module(cars). -compile({parse_transform, exprecs}). -record(car, {year :: pos_integer(), make :: binary()}). -exprecs_prefix(["rec_", operation, "_"]). -export_records([car]). foo() -> rec_
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Does Erlang LS support parse transforms such as exprecs of the parse_trans library?
When I try to find completions in Zed using the Erlang LS extension, it does not suggest the generated functions:
However,
erl
is fully capable of finding them:Just trying to understand if this is a bug, a limitation, or a misconfiguration perhaps? Here is the source code I'm trying this with:
The text was updated successfully, but these errors were encountered: