jbnizet
11/18/2021, 7:38 AMdata class Foo(val bar: String)
. In IntelliJ , selecting Foo
and hitting Alt-F7 only searches for the usages of the constructor. How do I make it search for all the usages of the class Foo?ephemient
11/18/2021, 7:43 AMdata class Foo constructor(val bar: String)
selecting Foo
searches for usages of class Foo
, selecting constructor
searches for uses for uses of the primary constructorjbnizet
11/18/2021, 7:50 AMJoffrey
11/18/2021, 8:44 AM