-
| Field | Description |
|--------------|-------------|
| Plugin | `conform-nvim` |
| Nixpkgs | `pkgs.vimPlugins.conform-nvim` |
| Home Manager | `` |
- [x] I have read t…
-
## Features that we would like to see
### Required (we almost certainly want them)
- [ ] Move RFL job forward to v6.13-rc1.
+ PR: https://github.com/rust-lang/rust/pull/133827.
### Nic…
ojeda updated
3 hours ago
-
Similar to the just-filed #3254 but a different case and with a possibly different resolution, the following comment is re-indented incorrectly:
```rust
if foo { // this comment describes the enti…
-
Consider the following snippet.
```rs
fn foo() -> fn(i32) -> i32 {
|a| {
;
a
}
}
```
Rustfmt starts by removing that spurious semicolon.
```rs
fn foo() -> fn(i32) -> i32 {
…
-
To the best of my knowledge we don't have this info captured anywhere in a single place, but it's something we should have. Unfortunately I think the only way to pull this together will be scanning th…
-
Sort of long explanation for a simple thing: it's very common in Rust to provide code examples in doc comments to explain how a method is used. However, sometimes methods are the same, and we accident…
-
I personally really like to write imports like this
```rust
use std::io::{ Read, Write, Seek };
```
instead of
```rust
use std::io::{Read, Write, Seek};
```
so I'd really like to have an o…
-
## Information
**VIM version**
NVIM v0.3.8
Build type: RelWithDebInfo
Operating System: Fedora
## What went wrong
ALE is linting the file while in insert mode with
let g:ale_lint_on_i…
bazzb updated
4 years ago
-
_From https://news.ycombinator.com/item?id=39121489_
> I've had cargo fmt eat my files when I was out of disk space. It created a new file, but the file length was 0, and my old file was gone.
r…
-
`#![cfg_attr(feature = "cargo-clippy", allow(clippy::inline_always,)]`
could be formatted to `#![cfg_attr(feature = "cargo-clippy", allow(clippy::inline_always)]`.
Note that this already works for…