Joel Montes de Oca

Results 47 comments of Joel Montes de Oca

> Could you try with "common-controls-v6" feature flag disabled? (it's enabled by default), once default features are disabled you'll have to choose the Linux backend manually (`gtk3` feature or `xdg-portal`)...

I wasn't able to test it this Friday at work but FYI I didn't have all the VS C++ build tools installed. I had to install them when compiling code...

Same here. I had pandoc 2.9.2.1-3ubuntu2 amd64 installed. Once I upgraded (2.19) the problem was resolved. I've been waiting for a feature like this FOR A LONG TIME. It was...

> @Vedant-Matanhelia Make sure you meet the minimum requirements listed in the README. You're most likely missing a tool that unpacks archives (winzip, 7zip, etc.) I have both winzip and...

I don't have choco set up on my system and kinda don't want to go through all that... Running as admin didn't seem to help. I'll keep probing around when...

Just cleaned out my dev dir with sn. 20gigs down to 3 gigs. :D

Commit 18ce1ea6b1af949da32f07260a0b244801730802 takes care of build error. I'm on Windows 11 and it's working for me. 👍 Before summer-tin was using Unix permissions to see if it can remove a...

I think I'm having the same problem: ```rust #[derive(Parser)] #[clap(author, version, about, long_about = None)] struct Cli { /// The PO csv file to be used #[clap(short, long, parse(from_os_str), required_unless_present...

> I think what is going on is that clap sees `input` isn't of `Option` and sets `required = true`. If you change input to use `Option`, it then gets...

@scottmcm: [std::iter::chain](https://doc.rust-lang.org/stable/std/iter/struct.Chain.html) this means that this function was also stabilized in std, right?