Completing Code

As you write code, Qt Creator suggests properties, IDs, and code snippets to complete the code. It shows a list of suggestions to the statement currently under your cursor. Press Tab or Enter to accept the selected suggestion and complete the code.

The following image displays suggestions for completing C++ code:

The following image displays suggestions for completing QML code:

To open the list of suggestions at any time, press Ctrl+Space. If only one option is available, Qt Creator inserts it automatically.

Specifying Completion Settings

To specify settings for code completion, select Preferences > Text Editor > Completion.

"Text Editor Completion preferences"

By default, code completion does not consider case. To apply full or first-letter case-sensitivity, select Full or First Letter in the Case-sensitivity field.

By default, code completion is always invoked, but you can change this behavior in the Activate completion field to invoke it Manually or When Triggered.

You can set a timeout in milliseconds for code completion in the Timeout in ms field.

In the Character threshold field, specify the number of characters you need to enter before code completion is triggered.

When completion is invoked manually, Qt Creator completes the common prefix of the list of suggestions. This is especially useful for classes with several similarly named members. To disable this functionality, deselect the Autocomplete common prefix check box.

Select the Automatically split strings check box to split a string to two lines by adding an end quote at the cursor position when you press Enter and a start quote at the beginning of the next line, before the rest of the string. In addition, pressing Shift+Enter inserts an escape character at the cursor position and moves the rest of the string to the next line.

Summary of Available Types

The following table lists available types for code completion and icon used for each.

IconDescription
A class
An enum
An enumerator (value of an enum)
A function
A private function
A protected function
A variable
A private variable
A protected variable
A signal
A slot
A private slot
A protected slot
A C++ keyword
A C++ code snippet
A QML type
A QML code snippet
A macro
A namespace

Completing Code Snippets

Code snippets can consist of multiple variables that you specify values for. Select an item in the list and press Tab or Enter to complete the code. Press Tab to move between the variables and specify values for them. When you specify a value for a variable, all instances of the variable within the snippet are renamed.

The following image shows a C++ code snippet:

"Completing C++ code"

The following image shows a QML code snippet:

Editing Code Snippets

Code snippets specify code constructs. You can add, modify, and remove snippets in the snippet editor. To open the editor, select Preferences > Text Editor > Snippets.

The following image shows built-in C++ code snippets:

"C++ snippet preferences"

The following image shows built-in QML code snippets:

Qt Creator has built-in snippets in the following categories:

  • Text snippets, which can have any text string. For example, code comments
  • C++ code snippets, which specify C++ code constructs
  • CMake code snippets that you can use when editing CMakeLists.txt files in the CMake editor
  • QML code snippets, which specify QML code constructs
  • Nim code snippets, which specify Nim code constructs

Adding and Editing Snippets

Select a snippet in the list to edit it in the snippet editor. To add a new snippet, select Add. Specify a trigger and, if the trigger is already in use, an optional variant, which appear in the list of suggestions when you write code. Also specify a text string or C++ or QML code construct in the snippet editor, depending on the snippet category.

You can use predefined variables in snippets. The snippet editor offers:

  • Highlighting
  • Indentation
  • Parentheses matching
  • Basic code completion

Specify the variables for the snippets in the following format:

$variable$

Specify Qt Creator variables in the following format:

%{variable}

For example, the following variable expands to the name of the project containing the file that is currently open in the editor: %{CurrentDocument:Project:Name}.

Use unique variable names within a snippet because all instances of a variable are renamed when you specify a value for it.

To determine the case of values you enter in snippets, use the following modifiers:

  • :c converts the initial letter of the string to upper case
  • :l converts the string to lower case
  • :u converts the string to upper case

For example, add the following line to the class snippet to specify that the function name is converted to all lower case characters regardless of how you specify the value of the $name$ variable:

void $name:l$() {}

The snippet editor does not check the syntax of the snippets that you edit or add. However, when you use the snippets, the code editor marks any errors by underlining them in red.

To discard the changes you made to a built-in snippet, select Revert Built-in.

Removing Snippets

The list of suggestions might show several similar built-in snippets for different use cases. To make it shorter when you write code, remove the built-in snippets that you do not need. If you need them later, you can restore them.

To remove snippets, select a snippet in the list, and then select Remove. To restore the removed snippets, select Restore Removed Built-ins.

Resetting Snippets

To remove all added snippets and to restore all removed snippets, select Reset All.

Note: If you now select OK or Apply, you permanently lose all your own snippets.

Completing Nim Code

You can use the Nimsuggest tool to query .nim source files and obtain suggestions for code completion.

To use Nimsuggest, you must install it on the development PC. Then select Preferences > Nim > Tools, and enter the path to the tool executable in the Path field.

See also Document code and Use Qt Creator variables.

© 2023 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.