Home > Software engineering >  Is there a way to bulk auto-fill argument names for all function or classes?
Is there a way to bulk auto-fill argument names for all function or classes?

Time:12-23

It's been asked and answered how to auto fill named arguments / parameters for Kotlin i.e. Is there a way to auto-fill arguments names?

What I am asking here is how to do this for all classes or all in a given package?

I have many callers that need to be backfilled with names and it's not practical to edit them all by hand.

CodePudding user response:

I wrote an IntelliJ / Android Studio plugin to do this: https://plugins.jetbrains.com/plugin/18248-kotlin-bulk-add-name-params

  • Related