js-autoimport icon indicating copy to clipboard operation
js-autoimport copied to clipboard

atom autocomplete-plus provider which allows automatic ES6 modules

Results 9 js-autoimport issues
Sort by recently updated
recently updated
newest added

1. It would be really amazing if I was given a name of the component from autocompletion within third party modules (eg `react-native`) so that I don't have to manually...

I found this awesome package because of the following use case : I typically import some module exports in a lot of different files. for instance from react-bootstrap or react-intl....

This is insanely annoying!! :) ![bug](https://cloud.githubusercontent.com/assets/207726/18943516/2d645bfa-8631-11e6-9db9-065cd5b1a5e5.gif)

e.g. ``` import React from 'react'; import Component from './Component.jsx'; export default React.createClass({ render() { return } }); ``` File Component.jsx ``` import React from 'react'; export default React.createClass({}); ```...

We use this convention: ``` import {a, b, c} from './x'; ``` Your package rewrites this as: ``` import { a, b, c } from './x'; ``` ...which won't work...

[Enter steps to reproduce below:] 1. export const FOO = 'foo'; 2. try to import FOO **Atom Version**: 1.2.4 **System**: Mac OS X 10.11.1 **Thrown From**: [js-autoimport](https://github.com/tomkis1/js-autoimport) package, v0.5.1 ###...

I don't get any of modules in code completion.. is there anything I should comply with to get this working?

enhancement

When changing the import line of code, Atom adds the same import automatically, multiple times. Check this video: https://drive.google.com/file/d/0B1UISLB95DfyMWV1NHlUZnpmOHM/view?usp=sharing OS: Windows 7 Atom version: 1.0.19 Error occurs not in safe...

``` @withStyles(styles) class App {... ``` ![screenshot](https://cloud.githubusercontent.com/assets/781189/9243946/a53ae92c-4196-11e5-98d2-095dadea6e90.png)