1

I'm wondering if it would be possible to navigate directly to the methods generated by Lombok using Intellij IDEA.

For instance, for this given example:

@Builder
public class AClass {

  private String body;

}

trying to go to the implementation of AClass#builder in an instruction like AClass.builder().build() results in Intellij navigating to AClass, instead of taking me to the real compiled method, which is generated under target directory

thmasker
  • 406
  • 1
  • 9
  • 21

1 Answers1

1

Please feel free to create an issue here: https://youtrack.jetbrains.com/issues/IDEA Currently you can't change the behavior.

Olga Klisho
  • 1,206
  • 5
  • 7
  • for those interested, I created the issue some time ago: https://youtrack.jetbrains.com/issue/IDEA-294797 – thmasker Jan 09 '23 at 08:18