IntelliJ IDEA lets you manage your imports in Scala the same way as it does for Java.
You can configure the improrts in the Settings.
Project Settings→Code→Scala Imports
Class count to use import with '_' - in this text field, specify the number of classes to be imported from a single package until all statements importing a single class are substituted with a statement importing an entire package.
IDE Settings→Editor→Auto Import
You can select the following opions:
- Insert imports on paste - use this drop-down list to define how IntelliJ IDEA will insert imports for pasted blocks of code, if they contain references to classes that are not imported into the target class.
The available options are:
All - select this option to have IntelliJ IDEA automatically add import statements for all classes that are found in the pasted block of code and are not imported in the current class yet.
Ask - if this option is selected, when pasting code blocks, IntelliJ IDEA will open a dialog box, where you can choose the desired imports.
None - select this option to suppress import.
- Optimize imports on the fly - select this check box to have the Optimize Imports operation automatically performed for your files.
- Add unambiguous imports on the fly - select this check box to have IntelliJ IDEA automatically add imports that can be added without user intervention.