A2oz

What is the shortcut to organize imports in IntelliJ on Windows?

Published in Programming 1 min read

The shortcut to organize imports in IntelliJ on Windows is Ctrl + Alt + O.

This shortcut will automatically:

  • Remove unused imports.
  • Add missing imports.
  • Optimize import order.

This action helps to keep your code clean and organized.

Related Articles