Previous discussions: clangd/clangd#1926, helix-editor/helix#9563
To reproduce:
$ touch .clang-format
$ printf '#include "a.hpp"\n#include "b.hpp"\n' > b.cpp
$ clang-format --style=file b.cpp
#include "b.hpp"
#include "a.hpp"
$ cat b.cpp | clang-format --style=file
#include "a.hpp"
#include "b.hpp"
Previous discussions: clangd/clangd#1926, helix-editor/helix#9563
To reproduce: