Consider a record:
public record Customer(@Id Integer id, String name) {}
And a corresponding repository:
public interface CustomersRepo extends Repository<Customer, Integer> {
}
Now, one of the method completion proposal should have Name proposal for:
public interface CustomersRepo extends Repository<Customer, Integer> {
findBy^
}