# Is there a tool to organize imports/using statements?

**URL:** https://discourse.julialang.org/t/is-there-a-tool-to-organize-imports-using-statements/32670
**Category:** General Usage
**Created:** [December 24, 2019, 9:58pm UTC](https://discourse.julialang.org/t/is-there-a-tool-to-organize-imports-using-statements/32670 "2019-12-24T21:58:08Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Qiyamah](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/qiyamah/32/2660_2.png) [@Qiyamah](https://discourse.julialang.org/u/Qiyamah)
#### Post date: [December 24, 2019, 9:58pm UTC](https://discourse.julialang.org/t/is-there-a-tool-to-organize-imports-using-statements/32670/1 "2019-12-24T21:58:08Z")

</div>

Hi,

I have bunch of modules which uses  
using …SomeOtherModule

however I want to transform them into  
using …SomeOtherModule: f1,f2

which shows exactly which functions and fields are being used from that particular module?  
and also which using statements are not necessary?  
Is there a tool which does that automatically?

Thanks

---

<div class="post-metadata">

### Author: ![Tamas\_Papp](https://sea2.discourse-cdn.com/julialang/user_avatar/discourse.julialang.org/tamas_papp/32/25949_2.png) [@Tamas\_Papp](https://discourse.julialang.org/u/Tamas_Papp)
#### Post date: [December 25, 2019, 7:56am UTC](https://discourse.julialang.org/t/is-there-a-tool-to-organize-imports-using-statements/32670/2 "2019-12-25T07:56:44Z")

</div>

Not that I am aware of.

For packages, I usually go with explicit `using` lists from the beginning. When porting existing code, I just list the usual suspects and let CI failures tell me what I missed.
