jyn

Results 249 issues of jyn

`cppman -m true -c` overwrites pages that already exist, like `memcpy` and `malloc`, without checking. It would be nice to keep those versions, especially since they have some info that...

Bug

Presumably `line_span` always returns a valid span. However, the API requires you to check the error anyway: ```rust let line = file_db .line_span(file, start.line) .expect("line should be in bounds"); println!("{}",...

Hello @holmgr, I noticed that there haven't been any PRs merged in the past year or so, even though there are a few useful and small PRs open. Are you...

Previously, cargo sweep would unconditionally give an error when it couldn't determine the fingerprint. But for custom toolchains, it makes sense for it to be linked but give an error...

S-waiting-on-review

I installed a custom version of rust from source (with x.py) and then cleaned the target directory. Now `cargo sweep -i` doesn't work. Instead of giving a hard error, it...

Like `git rebase -i`, but the prompt it opens up has all but the first commit set to `squash` instead of `pick` by default. Maybe it could have both an...

enhancement

``` $ bit # alt-left a bunch of times >> > b> bit ?[1;3D?[1;3D?[1;3D?[1;3D $ bit # alt-right a bunch of times bit >> > b> bi> bit ?[1;3C?[1;3C?[1;3C?[1;3C?[1;3C ```

Some commands I use often that aren't currently suggested (or need 90% of the typing to be suggested): - `git rebase -i $(git merge-base HEAD master)` - this one is...

enhancement
help wanted

This makes it hard to read the important points. Maybe this could be trimmed down to only the remote and recent commits? Or make the info configurable with flags, so...

enhancement
help wanted

Given the following code: https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=277b0605705776743255b4aa99055334 ```rust use core::fmt::Display; struct S { inner: Box, } impl S { fn foo(&self) {} } fn main() { let x: S = S {...

A-diagnostics
A-dst
T-compiler