## What version of Effect is running? 3.19.13 ## What steps can reproduce the bug? [nikelborm/effect-language-service-repro@`effect-gen-import-autocompletion`](https://github.com/nikelborm/effect-language-service-repro/tree/effect-gen-import-autocompletion) ```ts BRANCH_NAME="effect-gen-import-autocompletion" cd $(mktemp -d) git clone --depth 1 -b $BRANCH_NAME git@github.com:nikelborm/effect-language-service-repro.git cd effect-language-service-repro/ # possible warning of mise could be ignored bun install --frozen-lockfile code . ./index.ts # set cursor after `import Effect` # press Ctrl+Space to show autocompletion ``` ## What is the expected behavior? No `.__` autocompletion inside import expression. ## What do you see instead? ### `Effect`s ```ts import { Effect } from 'effect' import * as Effect from 'effect/Effect' ``` <img width="1366" height="283" alt="Image" src="https://github.com/user-attachments/assets/844fe036-fef4-4eb5-abfc-b205a2f04621" /> <img width="1272" height="351" alt="Image" src="https://github.com/user-attachments/assets/66fb9ada-aa3c-4135-8fdf-bb513267db70" /> ### `Option`s ```ts import { Option } from 'effect' import * as Option from 'effect/Option' ``` <img width="1272" height="351" alt="Image" src="https://github.com/user-attachments/assets/69fa48a2-fdcd-4395-82ce-bef498e5484e" /> <img width="1272" height="351" alt="Image" src="https://github.com/user-attachments/assets/fbc3fc17-8822-43c2-988b-50983cfa45f3" /> ### `Either`s ```ts import { Either } from 'effect' import * as Either from 'effect/Either' ``` <img width="1272" height="351" alt="Image" src="https://github.com/user-attachments/assets/52cdbd1f-73f7-44c0-b56b-27db012a594e" /> <img width="1272" height="351" alt="Image" src="https://github.com/user-attachments/assets/39d229f3-1d85-4c88-ad9a-8ebbf7fb86e6" />
What version of Effect is running?
3.19.13
What steps can reproduce the bug?
nikelborm/effect-language-service-repro@
effect-gen-import-autocompletionWhat is the expected behavior?
No
.__autocompletion inside import expression.What do you see instead?
EffectsOptionsEithers