Vladimir Panteleev

Results 783 comments of Vladimir Panteleev

Exact same problem for server renames. Edit: that has its own issue: https://github.com/sm00th/bitlbee-discord/issues/93

I'll have a look. How to run the test suite in the `test` directory (without parallelism)? I can't find the reason why the tests are failing in GH Actions.

`ListCommand` starts its output with: https://github.com/dlang/dub/blob/d99df8c83a81ecc1dde1a092191b1fac6b0bd887/source/dub/commandline.d#L2093 That looks like the entire output is intended for humans, not programs. Are there programs which consume this output, despite it being formatted with...

`DUB=$PWD/bin/dub test/run-unittest.sh` passes locally. I don't know what's wrong with CI.

> I'm not sure whether we should make a hard distinction between "machine readable" and "intended for human consumption" - most command line tools (e.g. `ls`) output human readable information...

Yeah, I think it's not actually standardized, just stable. I added `ListCommand`, with a note that the first line is part of the ossified protocol that we've pledged to support....

I keep running into this when I try running `dub > output.xml`. How can we move this forward?

Looks like `libdparse` is just weird here. These are parsed as attributes at the `Declaration` level when they prefix the function name, but as `memberFunctionAttributes` on the `FunctionDeclaration` if they...

I just tried the example in the README, but that seems to require a certain cc-mode configuration, as by default it indents array literal continuation with just a single level...

Aha, it's because, `tab-width` and `c-basic-offset` must match. (By default they are 8 and 2 respectively.) I think this needs to be mentioned in the documentation.