Is there a way for clang-format to convert code in the form: if (a) return 0; if (b) return 0; into this: if (a) { return 0; } if (b) { return 0; } If not, how should I request this feature?