-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ES6] Auto imports with completion #22
Comments
Could you give a sample please? |
In Java, if you write "ArrayL" and press Ctrl+Space to trigger autocomplete, JDT suggest you "java.util.ArrayList" and if you select in the proposal, "ArrayList" is written to source code and the import is included in the compilation unit. In Typescript.java, if you try start writing "Fig" in a project with the class "Figure" (in the module "Figure.ts"), no suggestions appear. I suppose that this is a limitation of tsserver. |
@micaelgallego I have suggest this idea at microsoft/TypeScript#7849 |
It seems TypeScript 2.4 will provide this feature. See PR at microsoft/TypeScript#13921 |
typescript@next (2.6.0) support that and I have implemented it: |
No description provided.
The text was updated successfully, but these errors were encountered: