Andreas Zwinkau

Results 14 comments of Andreas Zwinkau

That particular feed was under my control and I fixed it server-side. Thanks for the hover tip, I did not know that. I went through my subscriptions hunting for "Never...

I think this requires a very different approach than using libdparse. In other words a really big change and rearchitecture of dfmt. However, the ability to format "unparseable" D code...

After thinking it through, it is questionable, if we should really prefer the first code snippet. According to dfmt's cost model, they are equivalent. Same number of newline, all lines...

Here is another possibility: ``` d class FormatVisitor { void visit() { if (unary.prefix.type == tok!"~" || unary.prefix.type == tok!"&" || unary.prefix.type == tok!"*" || unary.prefix.type == tok!"+" || unary.prefix.type...

Why is it better? Can you specify a more formal optimization goal for dfmt? For example, if you want to minimize line length, the current behavior is better.

> When opening a file, EditorConfig plugins look for a file named .editorconfig in the directory of the opened file and in every parent directory. A search for .editorconfig files...

clang-format started with the idea that this is the main use case. Infer style from input file via "majority voting" and then unify the style. Turned out that an external...

Is there a reason not to give a tag like "v.0.0.1"?

Peopleware. Oops, I did not intend to leave the book title out. Found [this excerpt](https://www.gwern.net/docs/cs/2001-demarco-peopleware-whymeasureperformance.pdf). Is that ok for "freely accessible"?

Adding Makefile as a dependency is an ugly hack. It is too conservative for example. It rebuilds on any change to the Makefile. More intelligent build systems can figure out...