Tim Hutt
Tim Hutt
Yeah I also just used `{/* @ts-ignore */}`.
I have bisected this. The problem is introduced into the main repo by [this commit](https://github.com/boostorg/boost/commit/0abf39a2b21e96d67635c666d2e5834edaa3a071). I bisected the `tools/build` subrepo too but had to skip a few commits because of...
Ok I'm pretty sure the problem is in [Clean up msvc initialization.](https://github.com/boostorg/build/commit/9540e69b3ff89da704731c31472fa91ffda8f3ad). I cherry-picked it onto [Future one is "UNK"](https://github.com/boostorg/build/commit/bee2ef619bc3397852f33286515f3174751989a1) and still get the failure. I don't know enough about...
Same as #121. :-/
I had a little look into the code. I *think* there are two issues: 1. The docstring is concatenated into one big string ignoring newlines. See [this code](https://github.com/google/argh/blob/master/argh_derive/src/parse_attrs.rs#L525): syn::LitStr::new(&(previous.value() +...
Ok the logic turned out to be slightly more complicated than I thought, but this seems to work: ``` fn parse_comment(lines: &[&str]) -> String { let mut out = String::new();...
Ok that turned out to be easy - just loop through the lines in the description: ``` for line in cmd.description.lines() { let mut words = line.split(' ').peekable(); while let...
Actually I went ahead and did it because I can use it without waiting for a PR to be accepted. Just add this to your `Cargo.toml`: ``` [patch.crates-io] argh =...
Also you can't drag the opacity slider for colours. I think mouse move events are getting lost somewhere.
Worth adding this to the readme surely?