https://kotlinlang.org logo
e

efemoney

04/23/2018, 5:56 AM
I’m not sure whose (Kotlin’s or IntelliJ’s) job it is to provide code folding in the editor but I usually have very meaty annotations like the one below and it would be amazing if I could fold/collapse it
Copy code
@Singleton
@Component(
  modules = [
    ViewModelFactoryModule::class,    // Supply multibinding-powered VM factory

    ActivityInjectionModule::class,   // Supply dagger-android
    ConductorInjectionModule::class,  // injector factories

    AppModule::class,
    DataModule::class,
    SchedulersModule::class
  ]
)
interface AppComponent