Using dagger, Im injecting fields a lot - so I created a live template for declaring an injected variable:
@Inject
lateinit var $var$: $TYPE$
In Java, a similar live template would automatically fill in repository as I specified the type to be Repository
.
In Kotlin, however - it does not. But Im sure its possible?