You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The class name is used to set the file name. I have come across use cases where I need the class name set in an lower/upper camel case (classNameExample/ClassNameExample) and the file names be underscore separated (class_name_example.h/.cpp).
Is it possible to provide more commands than the current class name variations? Ideally one of the following would allow the described use case:
CLASSNAMECAMELLOWER - converts an underscore separated CLASSNAME input into camelCase
CLASSNAMECAMELUPPER - converts an underscore separated CLASSNAME input into CamelCase
CLASSNAMEUNDERSCORED - converts a CamelCase CLASSNAME input into Camel_Case (or camelCase into camel_Case) - keeping the capitals as input
CLASSNAMEUNDERSCOREDUPPER - converts a CamelCase CLASSNAME input into CAMEL_CASE
CLASSNAMEUNDERSCOREDLOWER - converts a CamelCase CLASSNAME input into camel_case
The text was updated successfully, but these errors were encountered:
The class name is used to set the file name. I have come across use cases where I need the class name set in an lower/upper camel case (classNameExample/ClassNameExample) and the file names be underscore separated (class_name_example.h/.cpp).
Is it possible to provide more commands than the current class name variations? Ideally one of the following would allow the described use case:
CLASSNAMECAMELLOWER - converts an underscore separated CLASSNAME input into camelCase
CLASSNAMECAMELUPPER - converts an underscore separated CLASSNAME input into CamelCase
CLASSNAMEUNDERSCORED - converts a CamelCase CLASSNAME input into Camel_Case (or camelCase into camel_Case) - keeping the capitals as input
CLASSNAMEUNDERSCOREDUPPER - converts a CamelCase CLASSNAME input into CAMEL_CASE
CLASSNAMEUNDERSCOREDLOWER - converts a CamelCase CLASSNAME input into camel_case
The text was updated successfully, but these errors were encountered: