Auto Complete / Auto Import

Auto Complete

It anticipates the words you're about to write and completes them for you, even if you don't finish.

It's based on words you've written before in that editor, and certain software stacks (Node.js, C/C++, JAVA) provide additional frequently used functions or reserved words.

Auto Import

In addition to auto-completion, Java projects also provide auto-import functionality.

Auto Import will automatically import packages that are missing from your code when you press Ctrl + Shift + O (Mac: ⌘⇧O) in the editor.

Last updated