Martin Carton
Martin Carton
For me most of the time is actually spent in my shell to get the alias list: ``` % time zsh -ic alias > /dev/null zsh -ic alias > /dev/null...
So this is `history`'s fault again and a duplicate of #334. I can see from the output your version of The Fuck is outdated though, last versions have improved.
What about `git clone --depth 1`? Never really used it but shouldn’t that have a lower footprint?
https://github.com/Manishearth/rust-clippy/issues/746 gave me a similar idea: it would be nice if internal compiler errors could be reported automatically.
I'm not sure about `FromStr`, I feel like this can only be abused. As for `Display`, I though displaying stuff like “permission denied”, not “PermissionDenied”. Not very useful for serialization...
Traditional macros can't make `PermissionDenied` into “permission denied”, so that's one more reason to go that way. > I don't know what you mean by `new` + `Default`... looking forward...
All attributes must be on the form `#[derivative(…)]`, but we could do something like `#[derivative(Default=123)]`.
I don't want just `#[default("123")]` because that might conflict with other stuffs. Eg. even `serde` uses `#[serde(default = "foo")]`.