Closed
Description
When sorting includes in a project, that mixes case styles for file names (for example both PascalCase
and snake_case
), it would be helpful to be able to sort alphabetically (case aware) instead of by character code.
Currently
#include <AClass.h>
#include <ThisIsADifferentClass.h>
#include <a_header_with_utility_functions.h>
Expected
#include <AClass.h>
#include <a_header_with_utility_functions.h>
#include <ThisIsADifferentClass.h>