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
However, it seems to split args on spaces without respecting the escaped quote. clang-format thinks that it has received 6 filenames which yields the error:
$ cbfmt -w test.md[Error]: test.md:3 [c] -> [clang-format]No such file or directoryNo such file or directoryNo such file or directoryNo such file or directoryNo such file or directoryNo such file or directoryNo such file or directory[0/1] files were written.
Here's my test markdown file:
Hello
```cstruct MailStructure {
unsigned int data : 18; // Assuming data is 18 bits
unsigned int reserved : 10;
unsigned int channel : 4;
};
```
The text was updated successfully, but these errors were encountered:
I'm trying to have
cbfmt
autoformat my C code blocks usingclang-format
with the following config:However, it seems to split args on spaces without respecting the escaped quote.
clang-format
thinks that it has received 6 filenames which yields the error:Here's my test markdown file:
The text was updated successfully, but these errors were encountered: