Open DanTup opened 6 years ago
I almost always use show
. I think it makes code much easier to understand when it shows where certain identifiers come from. Especially UI code often has a lot of components/widget imports and imports for other stuff.
I'm in favor of making this more convenient.
I think it makes code much easier to understand when it shows where certain identifiers come from.
I think then you can have some interest on:
Currently if you reference a function from a package that you haven't imported you get a fix to import it. It's be nice if there was an additional fix that imports with a
show
for just that function (there's already a fix to add new functions to existing imports, so this would make it easier to minimise what you're importing).