Kitsu
Kitsu
Actually there's something strange published for `allsorts_no_std`, [it's cargo.toml differs](https://docs.rs/crate/allsorts_no_std/0.5.2/source/Cargo.toml.orig) from the github sources. It directly disables features of `encoding_rs`. Apparently `rust-fontconfig` is redundant for the example.
Well, I actually found it out by an accident, but probably it can be useful with "never" type, e.g. in postgres: `CREATE TYPE NeverType AS ENUM ()`. Though, I'm not...
Maybe it is enough to use proc-macro with explicitly listed arguments instead of some syntax extensions? That approach already works [pretty fine](https://github.com/l4l/closure-pass/blob/330c7d09e5376ee295cb8aa48384e65e6c17639a/examples/sample.rs#L7-L21) I think. Though, it is still requires `stmt_expr_attributes`...
I also encountered the same issue as the author. Though only able to reproduce the `subtract with overflow` and get the backtrace of the process that corrupted the state, i.e...
From man execve(2): > By convention, the first of these strings (i.e., argv[0]) should contain the filename associated with the file being executed. In particular firefox segfaults, if the first...
> why yofi tries to run tmux-256color in first instance? Didn't answer at that time, still don't remember why I did it :\ See linked PR Thanks for bumping the...
Yeah, ok. I figure out the reason. Certain apps have `Terminal=true` field as specified in [XDG spec](https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html). `vim` as an example if launched without term it simply quits. There are...
The search list contains no items, right? If so that an indented behavior then, though panic message might definitely be improved. What is your expectation for that case?
Yeah, I see, a copy-pasted answer from reddit: > That's a little bit messy, because sometimes you want to launch an app that contains multiple words and another time an...
> Using the `binapps` mode works Keep in mind, it was only my thoughts so far, `binapps` mode can only launch exact binaries, no arguments are supported yet. I agree...