Qt 6.11 is out! See what's new in the release
blog
Format code in Qt Creator
Qt Creator and other tools
2
Posts
2
Posters
4.0k
Views
1
Watching
-
Is there any way to format the code in Qt Creator? I mean, for example, in Visual Studio, when I write something like this:
cout<<"Hello";
It will be automatically changed to:
cout << "Hello"; -
Is there any way to format the code in Qt Creator? I mean, for example, in Visual Studio, when I write something like this:
cout<<"Hello";
It will be automatically changed to:
cout << "Hello";@khanhmg
Qt Creator has support for code formatting:
http://doc.qt.io/qtcreator/creator-beautifier.html
You need to install the beautifiers yourself though.