Example from the title:
I have this declaration:
int8_t SW_ROW[24] = {1, 1, 1, 1, 0, 0, 0, 0, 5, 5, 5, 5,
20, 20, 20, 20, 19, 19, 19, 19, 18, 18, 18, 18};
and for better readability, I want to add spaces to look like this:
int8_t SW_ROW[24] = { 1, 1, 1, 1, 0, 0, 0, 0, 5, 5, 5, 5,
20, 20, 20, 20, 19, 19, 19, 19, 18, 18, 18, 18};
I have not found an entry in clang-format to allow this. Can it be done?