Skip to content
New issue

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

Support for parse transforms? #1583

Open
denizdogan opened this issue Feb 17, 2025 · 0 comments
Open

Support for parse transforms? #1583

denizdogan opened this issue Feb 17, 2025 · 0 comments

Comments

@denizdogan
Copy link

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:

Image

However, erl is fully capable of finding them:

Image

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_
@denizdogan denizdogan changed the title Support for exprecs? Support for parse transforms? Feb 26, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant