This section covers various techniques of context-aware code completion that allow you to speed up the coding process:
Basic code completion. Completing names and keywords
Basic code completion helps you complete names of classes, methods, fields, and keywords within the visibility scope. When you invoke code completion, IntelliJ IDEA analyses the context and suggests the choices that are reachable from the current caret position.
Code completion covers supported and custom file types. However, IntelliJ IDEA does not recognize the structure of custom file types and suggests completion options regardless of whether a specific type is appropriate in the current context.
If basic code completion is applied to part of a field, parameter, or a variable declaration, IntelliJ IDEA suggests a list of possible names depending on the item type.
Invoking Basic code completion for the second time shows the names of classes available through module dependencies.
When invoked once more (for the third time in a row), the suggestion list expands to the whole project, regardless of dependencies. This action completes the names of classes and interfaces searching through the entire project. If the desired class is not yet imported, it will be imported automatically.
To use basic code completion:
Start typing a name.
Press Ctrl+Space or choose Code | Completion | Basic from the main menu.
If necessary, press Ctrl+Space for the second time (this action produces the same effect as pressing Ctrl+Alt+Space).
This shows all classes available through module dependencies. The second completion also shows static fields and methods.
When invoked for the third time, basic code completion expands the suggestion list to all classes throughout the project, regardless of the dependencies.
Smart code completion. Completing code based on type information
Smart code completion filters the suggestions list and shows only the types applicable to the current context.
Smart code completion is useful in situations when it is possible to determine the appropriate type:
In the right part of assignment statements.
In variable initializers.
In return statements.
In the list of arguments of a method call.
After the new keyword in an object declaration.
To use smart code completion:
Start typing. Press Ctrl+Shift+Space or choose Code | Completion | SmartType from the main menu.
SmartType code completion automatically highlights the selection in the suggestions list that is most suitable for the current context.
For example, consider smart type code completion after the new keyword in Java:
If necessary, press Ctrl+Shift+Space once again. This lets you complete:
Chained expressions.
Collections, lists and arrays. IntelliJ IDEA searches for symbols with the same component type and suggests converting them.
Static method calls or constant references. IntelliJ IDEA scans for static methods and fields, and suggests the ones suitable in the current context.
Completing statements
The Smart Enter completion enables you to create syntactically correct code constructs.
To automatically complete a statement, start typing it and press Ctrl+Shift+Enter. The punctuation required in the current context is added and the caret moves to the next editing position.
Completing a method declaration: start typing a method declaration and press Ctrl+Shift+Enter after the opening parenthesis:
This will create an entire construct of a method, the caret resting inside the method body:
Completing code constructs: start typing a code construct and press Ctrl+Shift+Enter:
IntelliJ IDEA automatically completes the construct, and the caret is placed at the next editing position:
Automatic encapsulation: IntelliJ IDEA automatically encapsulates a method call when you directly type a new method call next to it.
For example, type
|"test"
and then type the method call. When println gets the focus in the suggestion list, select it with Ctrl+Shift+Enter: The resulting code will look like the following:
System.out.println("test");
Completing tag names
IntelliJ IDEA automatically completes tags and attributes names and values in the following file types:
HTML/XHTML
XML/XSL
JSP/JSPX
Automatic tag name completion is based on the DTD or Schema the file is associated with.
If there is no schema association, IntelliJ IDEA will use the file content (tag and attribute names and their values) to complete your input.
In XML/XSL and JSP/JSPX files, completion for taglibs and namespaces is available.
Completing tag names
Press < and start typing the tag name. IntelliJ IDEA displays the list of tag names appropriate in the current context. Use the ArrowUp and ArrowDown buttons to scroll through the list.
Press Enter to accept a selection from the list.
IntelliJ IDEA automatically inserts the mandatory attributes according to the schema.
Inserting a taglib declaration
Start typing a tag and press Ctrl+Alt+Space.
Select a tag from the list. The uri of the taglib it belongs to is displayed in brackets.
Select the desired taglib and press Enter. IntelliJ IDEA adds the declaration of the selected taglib:
Importing a taglib declaration
Start typing a taglib prefix and press Alt+Insert.
Select a taglib from the list and press Enter.
IntelliJ IDEA imports the selected taglib and adds the import statement automatically.
Hippie completion. Expanding words based on context
Hippie completion is a completion engine that analyses your text in the visible scope and draws its completion proposals from the current context. It helps you complete a word with a keyword, class name, method or variable.
To expand a string at caret to an existing word, do the following:
Type the initial string and do one of the following:
Press Alt+Slash or choose Code | Completion | Cyclic Expand Word to search for matching words before the caret
Press Shift+Alt+Slash or choose Code | Completion | Cyclic Expand Word (Backward) to search for matching words after the caret and in other open files.
The first suggested value appears, and the prototype is highlighted in the source code:
Press Enter to accept the suggestion, or hold the Alt key and keep pressing Slash until the desired word is found.
Postfix code completion
Postfix code completion helps you reduce backward caret jumps as you write code. It allows you to transform an already typed expression to a different one based on a postfix you type after a dot, the type of expression, and its context.
For example, the .if postfix applied to an expression wraps it with an if statement.
Before
After
functionm(arg){arg.if}
functionm(arg){if(arg){}}
To enable/disable the postfix completion feature or separate templates, in the Settings / Preferences Dialog dialog, go to Editor | General | Postifx completion. You can also choose which key you want to use to expand postfix templates: Tab, Space, or Enter.
Postfix completion suggestions are shown as part of the basic completion suggestions list. To see a full list of postfix completions applicable in the current context, press Ctrl+J.
Completion tips and tricks
Narrow down the suggestions list
You can narrow down the suggestions list by typing any part of a word (even characters from somewhere in the middle), or invoking code completion after a dot separator. IntelliJ IDEA will show suggestions that include the characters you've entered in any positions.
This makes the use of wildcards unnecessary:
In case of CamelCase or snake_case names, type the initial letters only. IntelliJ IDEA automatically recognizes and matches the initial letters.
Accept a suggestion
You can accept a suggestion from the list in one of the following ways:
Press Enter or double-click the desired choice to insert completion to the left from the caret.
Press Tab to replace the characters to the right from the caret.
Use Ctrl+Shift+Enter to make the current code construct syntactically correct (balance parentheses, add missing braces and semicolons, etc.)
Negate an expression
You can negate an expression in Java by pressing ! after you have selected it from the suggestions list: As a result, the expression will be negated:
Negating an expression works this way if you have the Insert selected variant by typing dot, space, etc. option enabled in the Code Completion settings page, or invoke code completion explicitly, or change a selection in the suggestions list explicitly.
View reference information
You can use the Quick Definition View by pressing Ctrl+Shift+I when you select an entry in the suggestions list:
You can use the Quick Information View by pressing Ctrl+Q when you select an entry in the suggestions list:
Sort entries in the suggestions list
You can sort the suggestions list alphabetically or by relevance. To toggle between these modes, click or respectively in the lower-right corner of the list.