Snakecase file names on C++ classes
Answered
How do I snake case the file names generated when adding a new C++ class?
For example, for a class name MyFirstClass, I want to generate "my_first_class.cpp" and "my_first_class.hpp", not "MyFirstClass.cpp" and "MyFirstClass.hpp".
I found this suggestion on Stackoverflow, but it is not clear where this should be entered: https://stackoverflow.com/questions/38037467/how-to-use-snake-case-for-file-names-and-camel-case-for-file-names-in-clion
Please sign in to leave a comment.
Hi!
Unfortunately, this feature hasn't been supported in CLion yet. We have a related feature request in our tracker: https://youtrack.jetbrains.com/issue/CPP-3813. Feel free to comment or upvote. I suppose, that the solution from the SO doesn't work.