- VSCode Version: Code - Insiders 1.19.0-insider (cd906f8, 2017-12-07T06:14:22.977Z)
- OS Version: Linux x64 4.4.0-21-generic
- Extensions: none
Steps to Reproduce:
- Create
b.ts containing:
export const foo = 0;
export const bar = 1;
- Create
a.ts containing:
; import { foo } from "./b";
- Go to the start of the line, type
ba, and accept the completion.
- You get
bar; import { fo, baro } from "./b";
(expected bar; import { foo, bar } from "./b";)
@mjbvz We were talking about this at the meeting today.
Steps to Reproduce:
b.tscontaining:a.tscontaining:ba, and accept the completion.bar; import { fo, baro } from "./b";(expected
bar; import { foo, bar } from "./b";)@mjbvz We were talking about this at the meeting today.