Android studio 如何在Intellij中使用Kotlin扩展函数指定Live模板的导入

Android studio 如何在Intellij中使用Kotlin扩展函数指定Live模板的导入,android-studio,kotlin,intellij-idea,live-templates,Android Studio,Kotlin,Intellij Idea,Live Templates,我正在使用以下Live模板: timber.log.Timber.debug { "$METHOD_NAME$" } 其中,debug是一个扩展函数: package timber.log inline fun Timber.debug(throwable: Throwable? = null, message: () -> String) { log(DEBUG, throwable, message) } Intellij自动添加导入木材.log.timbe

我正在使用以下Live模板:

timber.log.Timber.debug { "$METHOD_NAME$" }
其中,
debug
是一个扩展函数:

package timber.log
inline fun Timber.debug(throwable: Throwable? = null, message: () -> String) {
  log(DEBUG, throwable, message)
}
Intellij自动添加
导入木材.log.timber
。 是否可以在Intellij/Android Studio中为
timber.log.debug
指定导入