-
Notifications
You must be signed in to change notification settings - Fork 518
Open
Labels
Milestone
Description
Is there any way to disable automatic imports?
What I mean by this is that when for example I paste:
UI_Context ui_ctx = new UI_Context();
Then this is automaticly added:
import imgui_2026.UI.UI_Context;
First off all I already had a static import so the import is not needed at all to have things working.
Second and more important, I want to be in control of the imports being used, and this way it's easy for something to slip in by accident.
I was happy with the ctrl + . to do imports.
All my attempts so far either didn't work, or they stopped autocomplete everywhere.