How to make this `build(:create_user)` have the ability to jump to factory.ex

I now have some tests in which I will use test fixtures, use build(:create_user) is very clean. but there is a problem that neither VSCode nor Vim supports jumping directly to the factory.ex file. And I want to know if there is any configuration method that can be configured directly after using gd to jump over.

Not really, not without manual changes to the ElixirLS, and I think that is out of the scope of LS.

My approach would probably not suite your needs, but just do not use factory library and instead write your own functions for that.

I’m using the function now, like make_create_user

The combination of make and create has some loss of semantics.