Zhoujiazhiwork
- Total activity 35
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 13
-
Created Refactor Rename changes method names inside string literals
AnsweredWhen renaming a method, CLion also replaces the method name inside string literals, which is unwanted.Is there a setting or config to disable renaming inside string literals? -
Created How to exclude string literals from "Find in Files" (Ctrl+Shift+F) results in CLion?
AnsweredI'm often using the "Find in Files" feature (Ctrl+Shift+F) to search across my project.However, I want to exclude matches found inside string literals.For example, given this line:const char* text ... -
Created Formatting Issues: Spaces in < > and Line Breaks
Hi,I just started using CLion for C++. Here’s an example of my code:namespace Test { static vector<vector<vector<int>>> *abc; } After reformatting, it turns into:namespace Test { static vecto...