Is there a way to get VSCode to auto-create import lines in Kotlin?
e.g.
- User enters
val thread = Thread()in Kotlin source in VSCode - User invokes auto-importer via hotkey or whatever
- VSCode automatically inserts
import java.lang.Threadat the top
The Java extension has a command to do exactly this (with alt+shift+o).
Surely there must be a Kotlin extension or command for this, but I can't find it.