Open
Description
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:
-module(cars).
-compile({parse_transform, exprecs}).
-record(car, {year :: pos_integer(), make :: binary()}).
-exprecs_prefix(["rec_", operation, "_"]).
-export_records([car]).
foo() ->
rec_
Metadata
Metadata
Assignees
Labels
No labels
Activity