Auto-Import
Auto-Import copied to clipboard
Clash with renamed import (with `as` keyword)
Auto import messes up the renamed imports.
if I have a renamed import like so:
import { A1 as A } from 'a'
and I try to auto-import A2, it becomes:
import { A1asA, A2 } from 'a'
Here's the screenshot reproducing the bug:
