Auto-Import icon indicating copy to clipboard operation
Auto-Import copied to clipboard

vscode extension that will automatically finds, parses and provides code actions for all available imports. Only currently works with files in your folder and TypeScript.

Results 92 Auto-Import issues
Sort by recently updated
recently updated
newest added

First of all thanks for this extension. I ve noticed some members from the import section are removed if one of them is named as "from". Here one example which...

Got: ```vue // ... import Foo from "./Foo.vue" // ... ``` Need to be: ```vue import Foo from "./Foo.vue" // ... // ... ```

Hi, It's been several months now that the auto-import does not work for me at all. It doesn't show anything in the dropdown that opens when I key in an...

I use vscode for react and I have bundled all my frontend-components exports in an index file. so that I can just `import {Button,Modal} from 'frontend';` if I use the...

![image](https://user-images.githubusercontent.com/2730609/56309245-01394180-60fe-11e9-8977-a723bc52a706.png)

What happens when there are ambiguous results for an module e.g. With both Storybook and React, Storybook takes precedence over React's named useEffect module

Whenever I try to import something that already has some type imported this happens: Before import: ```js import User from '../User'; import type { UserType } from '../User'; ``` After...

I would like to make autoimport feature to be not shown on Intellisens' suggetions dropdown. Instead only in quick-fix drop down. ![image](https://user-images.githubusercontent.com/6842709/40266824-925b6cd8-5b5a-11e8-84f1-6bf493738a65.png) This really annoying. It's preventing from quick look...

A library we work with has this common pattern: `SomeComponent.tsx`: ```js export function SomeComponent() {}; export default = wrap(SomeComponent, withSomethingElse); ``` Now when I type: ```js

Hi, I'm using VSCode since several month with no freeze issues. After installing several extensions including 'Auto Import' I have freezes when doing npm updates in a larger project. I...