What's New in CLion

CLion 2024.1 levels up the CMake editing experience, unlocks multi-process debugging capabilities, assists with more accurate hardware descriptions in device tree files, and brings significantly improved integration with version control systems.

Key updates

CMake update

CMake update

Do you find editing CMake scripts challenging? With CLion 2024.1, you get enhanced writing assistance for CMake targets for even easier script editing. Now, CLion suggests live templates to create new targets, as well as code completion, navigation, and Find Usages for target names.

Learn more

Debugging enhancements

Debugging enhancements

We’re constantly improving CLion’s integration with debugger backends. With this latest release, it’s possible to debug multiprocess targets in CLion. GDB users will now benefit from bundled support for the latest GDB 14.1 version. A new option was also added to boost GDB indexing, thus boosting debugging performance.

Learn more

Meson support

Meson support

We continue to improve CLion’s Meson support. This 2024.1 version comes with a Meson tool window with many useful commands, custom settings for Meson, and the option to create new Meson projects from the New Project wizard in CLion.

Learn more

Improvements for VCS

Improvements for VCS

VCS support in CLion and other JetBrains IDEs has been updated significantly with our enhanced diff viewer, improved branch search functionality, a streamlined code review workflow, and many other useful improvements throughout the whole subsystem.

Learn more

CMake

Live templates

Live templates

Do you need a new CMake target? New live templates have been added that automatically create add_executable (type exe) and add_library (type lib) CMake commands for you.

Target name completion

Target name completion

CLion now completes target names in CMake commands. This makes it easier for you to link files to the targets and perform other target-related operations.

Navigation to target definitions

Navigation to target definitions

Looking for a place where a certain target is defined? Now, CLion lets you navigate to the corresponding add_library or add_executable commands from the target usage in just one click.

Find Usages for targets

Find Usages for targets

Rely on Find Usages (Alt+F7) to list all usages of the target in your project. The items in the tool window will be sorted into usages and target definitions.

Minimum required version

Minimum required version

When CMake fails to load because you don’t have the minimum required version of CMake enabled, CLion suggests a fix in the CMake tool window. Click Fix... and CLion will update the cmake_minimum_required command for you.

CMake preset loading

CMake preset loading

You can now configure which CMake preset types to import into CLion. For example, you can choose Configure option from the import list. To do so, use Settings/Preferences | Advanced Settings | CMake | Automatically import CMake Presets.

Finally, CLion 2024.1 bundles CMake v3.28.

Meson

Meson tool window

Meson tool window

Since v2023.3, CLion has included support for the Meson project model. It now comes with a Meson tool window (View | Tool Windows | Meson). There, you can find the list of build targets and useful commands like clean, install, test, and more.

New Meson projects

New Meson projects

Starting a new Meson project? The New Project wizard in CLion now comes with an option to help streamline the process. File templates for this new Meson project can be configured in Settings/Preferences | Editor | File and Code Templates | Meson Project.

Meson settings

Meson settings

If you need to specify the custom path to the Meson executable, you can now do so in CLion’s Meson settings. You can also use the Setup options field to provide any additional Meson commands.

Debugger

Debugging forked processes

Debugging forked processes

In CLion, it’s now possible to debug multiprocess targets. Our latest release lets you update the follow and detach policies from the context menu. This works on Linux (with LLDB and GDB) and for remote toolchains (WSL, remote, and Docker).

Learn more about these settings in our documentation.

Other debugger improvements

  • CLion now bundles GDB 14.1. The presentation of the standard types that were initially broken with this version in CLion has now been fixed.
  • If you experience performance issues with GDB, try out a new setting. This works on Linux machines for executables launched from the IDE. When it is enabled, CLion prepares indexes for GDB before the debug session starts.

Device tree

If you develop for hardware and write device tree files, you can benefit from the device tree file coding assistance in CLion that was added in v2023.3. In this new version, we improved the code analysis in device tree files and synchronized CMake with the Zephyr settings by default.

Property type checks

Property type checks

To validate node properties with binding, there are new checks for invalid property types and required or undeclared properties.

Duplicate elements

Duplicate elements

A Duplicate element inspection detects duplicate elements inside the device tree nodes. This could either be two or more properties with the same name or two or more nodes.

Enum value checks

Enum value checks

When an enumeration type is used, CLion validates the values for such properties and reports the unpermitted values.

Code completion

Code completion

To help you write device tree files, we’ve added code completion for the root node.

New terminal Beta

New terminal

The new terminal (Beta) is now available in JetBrains IDEs v2024.1. You can switch between the old and new terminal in Settings/Preferences | Tools | Terminal | Enable New Terminal.

We expanded the feature set, improved the visual appearance, and aligned it with the IDE’s refreshed look and feel.

  • Each command is now placed in the terminal as a distinct block. They are separated visually so that you can easily detect the start and end of each one. Easily navigate between blocks using the arrow keys or switch the focus between the prompt and output with the Ctrl+↑ and Ctrl+↓ keyboard shortcuts.
  • Code completion with documentation for commands, paths, arguments, options, and more will help you launch your required tasks more quickly.
  • The command history is also available in the new Terminal tool window.
  • The color scheme used in the Terminal tool window was updated to increase readability.

It supports only Bash, Zsh, and PowerShell, with other shells in development. Read on for more details.

Version Control

This release brings updates to VCS support in CLion, including:

  • In-editor code reviews for GitLab and GitHub repos.
  • CI status checks in the Git tool window.
  • Prevention of large file commits to repositories.
  • New Stash tab in the Commit tool window.
  • Option to exclude folders and files from comparisons.
  • And more!

Learn about all the changes here.

IDE UI update

Sticky lines while scrolling

Sticky lines while scrolling

Navigating through new codebases and large files can be tricky. To help you with that, the editor now has sticky lines while scrolling. This feature keeps key structural elements, like the beginnings of classes or functions, pinned to the top of the editor as you scroll. This way, scopes are always in view, and you can promptly navigate through the code by clicking on one such line.

Scale down the entire IDE

Scale down the entire IDE

Previously, CLion introduced the ability to zoom in and out of the entire IDE, adjusting the size of all UI elements simultaneously. However, the initial scaling range was limited to between 100% and 200%. Now we have incorporated a new option allowing users to scale down the IDE to 90%, 80%, or 70%, offering an extended range of customization options.

Other enhancements

  • The input stream redirection option, which was present only for the CMake Application run configuration, is now also available in C/C++ File run configurations.
  • The Assembly view was updated to improve presentation and UX:
    • The Assembly view for ARM targets is now shown correctly.
    • Assembly view settings are now applied immediately, with no need to manually click the Refresh button.
    • When you edit a file for which the Assembly view is opened, a hint is now shown to the user suggesting they refresh the preview.

What's New in CLion 2023.3

CLion 2023.3 features JetBrains AI Assistant, which has now moved beyond the technical preview stage, bringing more context- and project-aware actions to benefit your everyday C++ development workflows. The new release also expands project models support, brings tools for more in-depth code analysis and underlying assembly viewing, and empowers embedded developers with support for device tree files.

Key updates

AI Assistant is out of preview

AI Assistant is out of preview General Availability

JetBrains’ AI Assistant is now generally available with a number of new and improved features to increase your productivity in JetBrains IDEs.

In CLion 2023.3, AI Assistant generates documentation more accurately and can explain runtime errors to you. The latest update also includes a context-aware AI chat and project-aware AI actions that use extended context to provide more comprehensive results.

Use AI Assistant in CLion as an add-on with a JetBrains AI subscription.

CLion Nova

CLion Nova Preview

In a bid to address long-standing performance and quality issues and unify the user experience across all our C++ tools, we’re launching CLion Nova. It’s a free preview version of CLion with the C++ language engine from ReSharper C++ and JetBrains Rider. It guarantees:

  • Faster highlighting speeds
  • A more responsive UI
  • Significantly fewer freezes and hangs in refactorings
  • Faster Find Usages
  • Faster test indexing

Learn more and use it for free while in preview

More C and C++ project models

More C and C++ project models

A range of project models are used for C and C++ projects. CLion works out of the box with CMake, compilation databases, Makefiles, and Autotools projects. V2023.3 now brings long-awaited support for Meson and addresses many issues in the Bazel for CLion plugin.

Learn more about the changes

Striving for better C++ code

Striving for better C++ code

CLion comes with a built-in data flow analyzer, which runs constantly when you are writing your code and helps improve your code’s quality. In v2023.3, we’ve improved the accuracy and performance of the overall analysis and added a memory leak analysis.

Learn more about the new analysis

Deep dive into your code

Deep dive into your code

CLion does its best to help you understand what the code is actually doing and search for bugs in the code base. A new Run to Cursor inlay option speeds up navigation through the code in the debugger, while the Assembly view for files is useful when you’re trying to find a bug or optimize your code’s runtime performance.

Learn more about the new abilities

Embedded development

Embedded development

A device tree is a hierarchical data structure primarily used to describe hardware. It’s widely used in Zephyr and provides the initial configuration for hardware. It’s now much easier to read, navigate, and maintain such files with CLion. Files with .dts and .dtsi extensions are treated by the IDE as device tree files, and so coding assistance options are now available in the device tree.

Learn more about the DTS support

Project Models

Bazel for CLion plugin

Important quality improvements are implemented in Google’s Bazel plugin for CLion:

  • CLion now takes the strip_include_prefix argument into account and thus uses the correct paths when looking for included headers.
  • The code insight now works correctly for the symlinked header under Bazel’s virtual includes.
  • Projects added in WORKSPACE.bazel using local_repository, or new_local_repository are now synchronized and indexed correctly in CLion.

Meson support

Meson support comes to CLion! You can open a Meson project in CLion and build, run, and debug it. It works on all platforms and for all local and remote toolchains, including WSL and Docker.

To help you edit the meson.build file, CLion provides you with:

  • Code highlighting
  • The Structure view shows executables and libraries if executable(...) and library(...) commands are present in the file.

Learn how to work with Meson projects in CLion

CMake enhancements

The CMake preset conditions equals and notEquals are now supported, meaning CLion no longer shows presets that don't match these conditions.

Assembly view

Assembly view for files

Assembly view for files

With CLion 2023.3, you don’t need a debugging session to explore the underlying assembly code! The new Show Assembly action uses the compiler settings from the currently selected resolve configuration, compiles the code of the currently viewed C/C++ file to assembly, and opens an editor with a preview showing which source code produces which assembly.

Learn more

Intel syntax

Intel syntax

All Assembly views in CLion (with and without the debugging sessions) were enhanced with the ability to switch to x86 assembly (Intel) syntax. To do so, go to Options in the Assembly view window and refresh the view to apply the changes.

Learn more

Debugger

Run to cursor

Run to cursor

CLion 2023.3 introduces a new Run to Cursor inlay option in the new UI that offers a quick way to navigate to a specific line of code while debugging. Once your program is suspended, you can hover over the line of code up to which you would like to execute the program and then click on the Run to Cursor popup to execute your code until it reaches the line where you clicked on the popup.

Embedded development

To help you fine-tune the hardware, CLion supports device tree files. Files with .dts and .dtsi extensions are treated by the IDE as device tree files, and so coding assistance options for these are provided in the device tree. Check the online documentation for details.

Reading the device tree files

To help you read through the existing device tree files, CLion provides:

  • Syntax highlighting in the device tree files.
  • Code formatting in the device tree files.
  • Code documentation when hovering over device tree elements.
  • Structure view and code navigation through the device tree files.

Writing device tree files

To write device tree files more effectively, CLion supports:

  • Code completion for standard nodes, /<commands>/, and labels.
  • Validation for labels and node names as you type.
  • Validation for the order of the elements in the tree if it’s defined.
  • Array size checks defined by the /bits/ option.

Static analysis

Function summaries

A new “function summaries” approach in CLion 2023.3 allowed us to distinguish different function contexts for arbitrary nested call chains, resulting in more accurate data flow analysis.

Field analysis

Field analysis

Existing inspections in DFA now also consider fields, and there is a new inspection that warns you if not all of the fields were initialized.

Memory leak analysis

Memory leak analysis

A new memory leak analysis is implemented. So you can now easily catch cases where memory is allocated but not released before it stops being accessible.

QML

QML

CLion detects QML types in a project in order to parse them and provide coding assistance based on them. But library QML types or types from users’ plugins are often located in other places. To solve this issue, we’ve introduced the new Extra QML imports setting in Settings/Preferences | Languages & Frameworks | QML, which allows the IDE to search for QML imports in specified locations and parse types from user code.

File templates

File templates

When you create a new project via the New Project wizard in CLion, a main.cpp or main.c file is generated for you automatically. In some cases however, you might want to rely on a custom template for these files. Now in the CLion 2023.3, you can edit such templates in Settings/Preferences | Editor | File and Code Templates | Other.

IDE feature trainer

The IDE Features Trainer is a set of interactive tutorials covering the essential IDE functionality. Start it from the Welcome screen or from Help | Learn IDE Features. Learn more in our online documentation.

Onboard easily

Training starts with the onboarding tour, which helps you get acquainted with CLion and the main user activities: navigating through the views and panels, opening files in the editor, launching your program, autocompleting symbols, applying quick-fixes, and searching for symbols.

Dive into the core IDE features

When you are done with the basics, you can move forward to the Code Editing, Refactorings, Code Completion, and Git sections. You can go through lessons from the list in any order, so just focus on the topics most interesting to you.

User experience

Hiding the main toolbar

Hiding the main toolbar

If you prefer a more compact IDE view, there’s a new option to hide the main toolbar in the default viewing mode. Go to View | Appearance and uncheck the Toolbar option to hide it.

Color-coding for file tabs

To enhance your navigation experience when working with a variety of file types in the editor at the same time, we’ve introduced default color-coded highlighting for editor tabs, mirroring their appearance in the Project tool window.

Speed search available via shortcut

Speed search available via shortcut

The Speed search functionality, allowing you to quickly navigate within tool windows and dialogs, is now available via a shortcut. When a tree or list is in focus, you can easily invoke the search from the tool window’s Options menu, by pressing Ctrl+F, or simply by starting to type your query.

Default tool window layout

Default tool window layout

If you want to quickly revert CLion’s custom tool window layout to the default one, you can now use Window | Layouts | Default to revert your workspace’s appearance to its default state.

Other enhancements

Tests scope

To save time during the test indexing phase, you can manually instruct CLion to look for tests in specific directories. To do this, create a Tests scope, and only the files that are filtered by this scope will be indexed during test indexation.

You can use the Tests scope to filter the Project view and quickly access the test files in your project. Learn more.

Improved support for Dev Containers

In CLion 2023.3, we've significantly extended the support for Dev Containers. You can now easily add extra development tools, runtimes, and libraries using Dev Container Features, simplifying the setup of essential components. We’ve also implemented automatic port forwarding, meaning that any ports the application starts listening to in a Dev Container are seamlessly forwarded. Learn more details here.

All-in-one diff viewer

CLion 2023.3 introduces a revamped way to review changes. Now, instead of going through each file one by one, you can see all of the modified files from a changeset in a single scrollable frame. This new diff viewer is compatible with GitLab, GitHub, and JetBrains Space reviews.

Support for GitLab snippets

Expanding the GitLab integration introduced with the CLion 2023.2 release, we’ve added support for GitLab snippets. You can now create public or private snippets directly within the IDE.

What's New in CLion 2023.2

CLion 2023.2 reimagines PlatformIO integration, improves support for vcpkg, includes the AI Assistant feature, weaving it naturally into some of the core IDE user workflows, and improves the experience of low-level, remote, and embedded debugging.

Key updates

AI Assistant

AI Assistant Limited access

CLion 2023.2 includes the AI Assistant feature, weaving it naturally into some of the core IDE user workflows. In C and C++, it explains the selected code, suggests how to better refactor that code fragment, or finds potential problems with it. It also generates commit messages and explains CMake errors.

Learn more

Debugger update

Debugger update

Low-level debugging is easier with CLion 2023.2, which brings the ability to inspect the registers of the current frame. You can also see register values inlined right in the disassembly view. A major update to the Attach to Process dialog enables attaching to remote and WSL processes.

Learn more

PlatformIO integration

PlatformIO integration

PlatformIO is an open-source platform that helps embedded developers with their projects. CLion 2023.2 integrates natively with the platform. The IDE works directly with the platformio.ini file, tracking changes in it and updating the project information accordingly.

Learn more

vcpkg integration

vcpkg integration

vcpkg is one of the most widely adopted package managers in C++. When working with vcpkg, there are two approaches – Classic mode and Manifest mode. CLion 2023.2 supports both. You can clearly distinguish them in the CLion UI and switch easily to the Manifest mode using a dedicated button.

Learn more

AI Assistant
Limited access

The new 2023.2 versions of IntelliJ-based IDEs and .NET tools include a major new feature: AI Assistant. It’s still in the early stages of development, but you can already try our approach of weaving AI assistance into the core IDE user workflows and integrating deep AI features with code understanding. Learn more in our webhelp.

AI Assistant is not currently bundled with stable releases of JetBrains IDEs and can be installed as a separate plugin. For the time being, there is a waiting list for access to the AI Assistant feature.

Chat with AI Assistant

Chat with AI Assistant

AI Assistant prefers programming topics and benefits from project-specific context. Iterate in the new dedicated tool window, and when you’re happy with the result, use Insert Snippet at Caret to put the AI-generated code in the editor – or just copy it over manually.

AI Actions... menu

AI Actions... menu

Select a specific code fragment in the editor and invoke an action from the AI Actions... context menu.

AI Assistant can help you:

  • Find potential issues in a selected code fragment.
  • Suggest how to better refactor that fragment.
  • Explain the selected code.
  • Start a new AI chat about the selected code.
Commit message generation

Commit message generation

Let AI Assistant help you describe the changes you made. Clicking the Generate Commit Message with AI Assistant button in the commit message dialog will send the diffs of your changes to the LLM, and it will generate a commit message describing your changes.

Explain CMake errors

Explain CMake errors

When CMake execution fails on your project, click Explain with AI in the CMake tool window to get a better understanding of what’s gone wrong and how to fix it.

Debugger

Attach to Process dialog

The Attach to Process dialog allows users to debug processes launched outside of CLion – locally or remotely – but also benefit from the IDE’s debugger integration.

From v2023.2 you can:

  • Attach to local, remote, and WSL processes.
  • Select any debugger configured in the toolchains.
  • Attach to processes launched remotely with administrative privileges.
Registers in debug

Registers in debug

Low-level debugging is easier when you have the ability to inspect the registers of the current frame. CLion now shows register values in the Variables tab of the debugger tool window.

ARM assembly

ARM assembly

CLion now supports ARM assembly languages, which means you’ll see code highlighting for ARM assemblers in the disassembly view.

Assembly registers in debug

Assembly registers in debug

When debugging disassembly code, CLion now shows register values inlined right in the disassembly view.

Other debugger improvements:

  • CLion bundles LLDB v16 and GDB v13.1.
  • Memory View now supports on-the-fly memory editing and displays the value right after editing.
  • To improve debugging of external libraries for remote toolchains, CLion now correctly handles breakpoints set in them and downloads missing source files on demand.

Embedded development

Native integration with PlatformIO

Native integration with PlatformIO

PlatformIO is an open-source platform that helps embedded developers with their projects. In CLion 2023.2, the intermediate CMake level was removed from the integration with PlatformIO. The IDE now works directly with the platformio.ini file, tracking changes in it and updating the project information accordingly.

Learn how to install the PlatformIO plugin and create a new project or open an existing one with it in our webhelp.

PlatformIO actions and tool window

PlatformIO actions and tool window

Some pio commands can now be invoked directly from the IDE (Tools | PlatformIO) – no need to switch to the terminal. This includes project reloading, running static code analysis on the project, invoking the device monitor, and more.

The PlatformIO tool window gives quick access to the most used commands and project actions.

Other improvements:

To make sure CLion can debug with the Segger J-Link GDB Server correctly, it now handles the SIGTRAP signal in addition to the usual SIGINT and SIGSTOP.

vcpkg

To help you manage project dependencies and external libraries, CLion integrates with vcpkg, a package manager for C/C++. In v2023.2, the integration got a major update, extending the number of scenarios supported.

Manifest mode

Manifest mode

When working with vcpkg, there are two approaches – Classic mode and Manifest mode. You can now clearly distinguish them in the CLion UI and switch easily to the Manifest mode using a dedicated button.

Console tab

Console tab

To make vcpkg’s Classic mode more convenient, we added a Console tab to the vcpkg tool window to show all commands and output.

CMake

Creating CMake targets when adding new files to a project

Creating CMake targets when adding new files to a project

CLion 2023.2 improves the new C/C++ file creation dialog in cases when there is no CMake target to add the new file to. The new Add new target... action creates a new target and adds it to the selected CMakeLists.txt file. After adding a target, you can then add new files to it.

CMake 3.25 and 3.26 support

CMake 3.25 and 3.26 support

CLion 2023.2 adds highlighting and completion for new parameters from CMake 3.25 and for the new block command used to execute a group of commands in a requested scope. In CLion, the new command is now highlighted, formatted, folded, and documented correctly.

CLion 2023.2 comes with CMake 3.26 bundled.

CMake Parameter Info

CMake Parameter Info

The Parameter Info popup shows signature variants as you type and is now available for CMake commands. It helps you figure out which parameter to enter next, especially with commands that have multiple variants.

Docker in WSL

Docker in WSL

If your project contains a Docker file with a Linux-based environment and you want to develop your application in it from a Windows machine, you can set this up in CLion using WSL and Docker.

Terminal in the output console

Docker in WSL

Terminal emulation in the output console is now enabled or disabled separately for each configuration. It’s disabled by default, and the setting that controls it has been moved from Advanced Settings to the Run Configuration section.

On Windows, it now works for MSVC LLDB-based debugging with both regular and administrative privileges.

User experience

Light theme with light header

Light theme with light header

For v2023.2, we’ve refined the user experience with the Light theme by introducing the alternate Light with Light Header option, featuring matching light colors for window headers, tooltips, and notification balloons.

Pinned run configurations

Pinned run configurations

To make managing multiple run configurations easier, we’ve implemented the option to pin preferred configurations in the Run widget.

Updated window controls on macOS

Updated window controls on macOS

When working on macOS in full screen mode using the new UI, the window controls are now displayed right in the main toolbar – not in the floating bar as before.

Removed title bar on Linux

Removed title bar on Linux

For the convenience of Linux users, the native header of the operating system has been removed in the new UI, resulting in a cleaner interface. By default, you will now see the custom IDE header, which offers a range of customization options to tailor your workspace.

Colored project headers

Colored project headers

CLion introduces colored headers to simplify navigation between several open projects. You can now assign a unique color and icon to each of your projects, making it easier to distinguish between them in your workspace.

Main toolbar customization

Main toolbar customization

We’ve expanded the customization options for the new UI’s main toolbar. You can now use a dropdown menu to quickly choose actions that you want to add to the toolbar. To do so, right-click on any widget, select Add to Main Toolbar, and explore the available options.

Text search in Search Everywhere

Search Everywhere is primarily used for searching through files, classes, methods, actions, and settings. With this update, it now includes text search capabilities similar to Find in Files.

Other enhancements

  • CLion and other IntelliJ-based IDEs have introduced initial integration with GitLab in v2023.2, allowing you to work with the Merge Request functionality right from the IDE and streamline your development workflow.
  • On Windows, CLion now defaults to amd64 Visual Studio toolchain architecture on non-ARM machines instead of x86.