May 06, 2021 by Christian Kandeler | Comments
As announced earlier, we have released Qt Creator 4.15 this week. Let us now take a closer look at some of the improvements to our C++ support that this version brings.
Since Qt Creator 4.14, the results of the "Find References to Symbol" action are colored differently depending on whether the respective reference is a read or a write access, or something else. Now it is also possible to filter the results according to the access type.
typedef
or using
.As you might know, we employ libclang for document-level features such as highlighting and completion, while the global view of a project is still provided by our trusty old built-in code model. We are currently experimenting with using clangd for this job. With a Qt Creator built from our master branch, you can already enable clangd support in the C++ code model settings, which currently means that the results of "Find References" will be provided via clangd. This functionality is still quite rough around the edges, but if you have problems with global symbol search in your projects, it might already be worth checking out.
Download the latest release here: www.qt.io/download.
Qt 6.9 is now available, with new features and improvements for application developers and device creators.
Check out all our open positions here and follow us on Instagram to see what it's like to be #QtPeople.
Apr 16, 2025
With the 0.9 release, you can unshackle yourself from cloud LLM providers,..
Apr 11, 2025
We are happy to announce the release of Qt Creator 16.0.1! We fixed a..
Mar 20, 2025
Here are the new CMake changes in Qt Creator 16: More feature parity with..
Commenting for this post has ended.
How to enable clangd in master builds?
Tools -> Options -> C++ -> Code Model -> Use clangd
Very much appreciated!
Have you managed to make the auto indent work properly with auto [a,b,c] = fun(); yet, or does it still indent half the page at random?